当前位置:   article > 正文

uniapp android 原生插件封装--入门篇_封装原生插件

封装原生插件

本文将介绍uniapp 插件封装官方例子的搭建,运行。和注意事项,避坑

1、文档地址:简介 | uni小程序SDK

开发者须知 | uni小程序SDK

Android平台第三方插件开发指导 - DCloud问答  这个介绍插件与原生的架构

2、下载官方示例:百度网盘 请输入提取码 : jrrb 

3、下载最新的 android sdk .2023-3-1 

编译项目:

    这个版本默认的SDK是17,官方的例子是旧项目。会提示sdkb版本太高,需要如下设置:把sdk改为你本机的1.8 

3、代码需要添加gradle 配置:uniplugin_richalert ->build.gradle

  1. dependencies {
  2. implementation 'androidx.test.ext:junit:1.1.5'
  3. compileOnly fileTree(dir: 'libs', include: ['*.jar'])
  4. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  5. androidTestImplementation 'com.android.support.test:rules:1.0.2'
  6. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  7. androidTestImplementation 'androidx.test:runner:1.4.0'
  8. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  9. testImplementation 'junit:junit:4.12'
  10. compileOnly 'androidx.recyclerview:recyclerview:1.0.0'
  11. compileOnly 'androidx.legacy:legacy-support-v4:1.0.0'
  12. compileOnly 'androidx.appcompat:appcompat:1.0.0'
  13. compileOnly 'com.alibaba:fastjson:1.2.83'
  14. compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar'])
  15. compileOnly 'com.alibaba:fastjson:1.1.46.android'
  16. }
uni.dcloud.io.uniplugin_richalert.ExampleInstrumentedTest.java 这个代码修改:
  1. package uni.dcloud.io.uniplugin_richalert;
  2. import android.content.Context;
  3. import androidx.test.ext.junit.runners.AndroidJUnit4;
  4. import androidx.test.platform.app.InstrumentationRegistry;
  5. import org.junit.Test;
  6. import org.junit.runner.RunWith;
  7. import static org.junit.Assert.assertEquals;
  8. /**
  9. * Instrumented test, which will execute on an Android device.
  10. *
  11. * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
  12. */
  13. @RunWith(AndroidJUnit4.class)
  14. public class ExampleInstrumentedTest {
  15. @Test
  16. public void useAppContext() {
  17. // Context of the app under test.
  18. Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
  19. assertEquals("uni.dcloud.io.uniplugin_richalert.test", appContext.getPackageName());
  20. }
  21. }

到这步,编译可以通过了。

运行插件

接下来,如何运行插件,并进行测试:

1、在hbuilderx 导入项目:

2、申请appId 

3、发行--》原生app本地打包--》生成本地资源

4、把打包的文件拷贝到 安卓开发的app/assets/apps/{appid}下。

5、配置这

6、需要配appKey 不然运行会提示没有配,这步需要导dcloud官网

手册:申请 | uni小程序SDK

申请过程需要 sha1 sha256 可以从目录下的这个文件提取:test.jks

keytool -list -v -keystore test.jks

7、在android开发工具里配置 appkey:

包名要和申请的一样

都搞定了。运行:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/617851
推荐阅读
相关标签
  

闽ICP备14008679号