简体中文
说明:当前文档基于android studio 2023.2.1 Patch 2。gradle版本为8.4。gradle插件版本为8.2.2。kotlin插件版本为1.9.10。
点击File->New->New Module...
点击左侧Templates
的Android Library
。
Language
选择Kotlin
。
Module name
建议设置为uniappx
。
点击Finish
。
注意
Language
一定要选择Kotlin
。Minimum SDK
需要选择21及以上的版本。Build configuration language
建议选择Groovy DSL(build.gradle)
。以下教程均按照此模式进行。将uts-runtime-release.aar,android-gif-drawable-1.2.28.aar,app-common-release.aar,app-runtime-release.aar,breakpad-build-release.aar,dcloud-layout-release.aar, framework-release.aar,uni-exit-release.aar,uni-getAccessibilityInfo-release.aar,uni-getAppAuthorizeSetting-release.aar,uni-getAppBaseInfo-release.aar, uni-getSystemSetting-release.aar,uni-openAppAuthorizeSetting-release.aar,uni-prompt-release.aar,uni-storage-release.aar,uni-getDeviceInfo-release.aar, uni-getSystemInfo-release.aar,uni-rpx2px-release.aar,uni-theme-release.aar共19个aar拷贝到uni-app x模块的libs下,如果没有libs需要手动创建,参考下图:
修改uniappx模块下的build.gradle
添加依赖
将下面的依赖信息添加到build.gradle中
dependencies {
implementation fileTree(include: ['*.aar'], dir: './libs')
implementation "androidx.core:core-ktx:1.10.1"
implementation "androidx.recyclerview:recyclerview:1.3.2"
implementation "androidx.appcompat:appcompat:1.0.0"
implementation "androidx.exifinterface:exifinterface:1.3.6"
implementation "androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.webkit:webkit:1.6.0"
implementation "com.google.android.material:material:1.4.0"
implementation "androidx.viewpager2:viewpager2:1.1.0-beta02"
implementation "com.alibaba:fastjson:1.2.83"
implementation "com.facebook.fresco:fresco:3.1.3"
implementation "com.facebook.fresco:middleware:3.1.3"
implementation "com.facebook.fresco:animated-gif:3.1.3"
implementation "com.facebook.fresco:webpsupport:3.1.3"
implementation "com.facebook.fresco:animated-webp:3.1.3"
implementation "com.github.bumptech.glide:glide:4.9.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.10"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.8.10"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
implementation "com.squareup.okhttp3:okhttp:3.12.12"
implementation "com.github.getActivity:XXPermissions:18.63"
}
添加aaptOptions配置
将aaptOptions配置添加到android节点下
aaptOptions {
additionalParameters '--auto-add-overlay'
ignoreAssetsPattern '!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~'
}
注意:上面的配置需要同时设置到主模块中。
在项目根目录的build.gradle的顶部添加gradle插件的依赖。参考:
buildscript {
dependencies {
...
classpath(files('plugins/uts-kotlin-compiler-plugin-0.0.1.jar'))
classpath(files('plugins/uts-kotlin-gradle-plugin-0.0.1.jar'))
}
}
注意:文件uts-kotlin-compiler-plugin-0.0.1.jar和uts-kotlin-gradle-plugin-0.0.1.jar位于原生SDK中,示例中放到了项目根目录的plugin
文件夹下。参考:
然后在uniappx
模块的build.gradle下添加插件io.dcloud.uts.kotlin
的依赖。参考:
plugins {
...
id 'io.dcloud.uts.kotlin'
}
注意:io.dcloud.uts.kotlin
仅需要配置到uniappx模块和android uts插件模块中。原有的主项目不需要配置。
在项目根路径下的settings.gradle中添加jitpack
的maven的仓库地址和本地gradle插件的路径配置。参考如下:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
...
maven { url = uri("https://jitpack.io") }
flatDir { dirs('./plugins/') }
}
}
在项目根路径下的gradle.properties中追加如下内容
android.useAndroidX=true
android.enableJetifier=true
添加activity
将下面内容拷贝到application节点下
<activity
android:name="io.dcloud.uniapp.UniAppActivity"
android:configChanges="orientation|keyboard|keyboardHidden|smallestScreenSize|screenLayout|screenSize|mcc|mnc|fontScale|navigation|uiMode"
android:exported="true"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/UniAppX.Activity.DefaultTheme"
android:windowSoftInputMode="adjustResize"
tools:replace="android:label,android:exported,android:theme,android:configChanges,android:windowSoftInputMode,android:screenOrientation">
</activity>
添加appid
在application节点下添加DCLOUD_UNI_APPID
节点
<meta-data
android:name="DCLOUD_UNI_APPID" android:value="替换成应用的appid" />
修改application
将application
节点的android:name
修改为io.dcloud.uniapp.UniApplication
注意:如果需要自定义application,必须继承自UniApplication
配置应用分发渠道
在application节点下添加DCLOUD_CHANNEL
节点
<meta-data
android:name="DCLOUD_CHANNEL" android:value="替换成需要发布的应用分发渠道" />
获取配置的应用分发渠道,可以通过uni.getAppBaseInfo()。
合并AndroidManifest.xml
如果uni-app x项目根目录下有AndroidManifest.xml文件,你需要按照xml文件的结构将内容拷贝到uniappx
模块的AndroidManifest.xml中。
导出uni-app x项目的资源文件
选择项目,然后点击:发行 -> 原生App-本地打包 -> 生成本地打包App资源
导出成功之后会在项目的unpackage/resources目录下生成资源文件
将app-android目录下与appid对应的目录拷贝到主项目的assets/apps
目录下
注意:apps下的appid必须与AndroidManifest.xml的DCLOUD_UNI_APPID
保持一致。
需要将unkackage/resource/app-android/uniappx/app-android/src/
目录下的所有文件拷贝到项目的src/main/java
下
注意:不要破坏原有src下的目录结构。
将uni-app x模块添加到主模块中。
dependencies {
implementation project(':uniappx')
implementation fileTree(include: ['*.aar'], dir: '../uniappx/libs')
}
资源导出成功之后,uts插件资源位于unpackage/resource/app-android/uni_modules
下。
如果不包含uts插件,可以跳过此章节。
注意:付费uts插件不支持通过原生SDK打包。
为方便区分,uts插件
指前端封装的uni_modules插件;android uts插件
指根据编译后的uts插件
生成的安卓原生模块。
点击File->New->New Module...
点击左侧Templates
的Android Library
。
Language
选择Kotlin
。
Module name
建议与uts插件模块名称一致。
点击Finish
。
注意:
Templates
一定要选择Android Library
。Language
一定要选择Kotlin
。Build configuration language
建议选择Groovy DSL(build.gradle)
。以下教程均按照此模式进行。uni-app可以忽略gradle插件配置。
在build.gradle的plugins节点下添加io.dcloud.uts.kotlin
的依赖。参考:
plugins {
...
id 'io.dcloud.uts.kotlin'
}
将下面内容拷贝到build.gradle中,替换原有的dependencies
节点。
dependencies {
compileOnly fileTree(include: ['*.aar'], dir: '../app/libs')
compileOnly fileTree(include: ['*.aar'], dir: './libs')
compileOnly "com.alibaba:fastjson:1.2.83"
compileOnly "androidx.core:core-ktx:1.10.1"
compileOnly 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8'
compileOnly 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8'
}
注意:uni-app需要添加如下依赖到build.gradle中
dependencies {
compileOnly fileTree(include: ['*.aar'], dir: '../app/libs')
compileOnly fileTree(include: ['*.aar'], dir: './libs')
compileOnly 'com.alibaba:fastjson:1.1.46.android'
compileOnly 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
compileOnly 'androidx.core:core-ktx:1.6.0'
compileOnly 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.0'
compileOnly 'org.jetbrains.kotlin:kotlin-reflect:1.6.0'
compileOnly 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8'
compileOnly 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8'
}
说明:
android uts插件模块编译时也要依赖基础库。建议直接使用uniappx
模块下的libs目录。参考:
dependencies {
compileOnly fileTree(include: ['*.aar'], dir: '../uniappx/libs')
...
}
如果插件依赖其他内置模块,可参考:模块配置,将模块对应的配置添加到app项目下。
如果插件依赖其他uts插件,建议优先将依赖的uts插件
配置成android uts插件模块
。然后在当前android uts插件模块
的build.gradle中添加依赖的插件模块。参考:
dependencies {
implementation project(':uts-依赖的android uts插件模块')
...
}
如果不包含config.json文件,可以跳过此章节。
如果config.json中不存在下面示例中的任一字段,直接忽略即可。
{
"abis": [
"armeabi-v7a","arm64-v8a"
],
"dependencies": [
"androidx.core:core-ktx:1.6.0",
{
"id": "com.xxx.richtext:richtext",
"source": "implementation 'com.xxx.richtext:richtext:3.0.7'"
}
],
"minSdkVersion": 21,
"project": {
"plugins": [
"com.huawei.agconnect"
],
"dependencies": [
"com.huawei.agconnect:agcp:1.6.0.300"
]
},
"components": [{"name": "zl-text","class": "uts.sdk.modules.zlText.ZlTextComponent"}],
"hooksClass": "uts.sdk.modules.zlText.ZlTextHook"
}
注意:abis、minSdkVersion、dependencies、project在设置android uts插件模块也需要设置到app主模块中。
abis
abis表示插件支持的CPU类型,需要将支持的CPU类型添加到android uts插件模块的build.gradle中,参考上面示例,添加内容如下:
android {
defaultConfig {
ndk { abiFilters "armeabi-v7a","arm64-v8a" } // 将ndk的内容添加到指定结构下
}
}
minSdkVersion
minSdkVersion表示最小支持的android版本。修改android uts插件模块的build.gradle中的minSdkVersion即可
注意:部分android studio生成的项目中为minSdk
dependencies
dependencies为插件依赖的仓储库,需要将dependencies中的依赖添加到android uts插件模块的build.gradle中
对于字符串内容,需要拼接implementation并添加到build.gradle的dependencies下。示例中"androidx.core:core-ktx:1.6.0"可以参考如下内容:
dependencies {
...
implementation 'androidx.core:core-ktx:1.6.0'
}
对于JSON内容,只需要将source对应的内容添加到build.gradle的dependencies下。示例中"id": "com.xxx.richtext:richtext"可以参考如下内容:
dependencies {
...
implementation 'com.xxx.richtext:richtext:3.0.7'
}
project
project 为gradle插件的配置。
plugins节点下的内容需要添加到android uts插件模块的build.gradle的plugins下。参考:
plugins {
...
id 'com.huawei.agconnect'
}
dependencies节点下的内容需要添加到项目根目录下的build.gradle的buildscript > dependencies中。参考:
buildscript {
dependencies {
...
classpath "com.huawei.agconnect:agcp:1.6.0.300"
}
}
plugins {
...
}
components
components 为uts组件的注册信息。需要将components对应的内容添加到主模块的build.gradle。参考配置:
defaultConfig {
buildConfigField "String", "UTSRegisterComponents", "\"[{\\\"name\\\":\\\"zl-text\\\",\\\"class\\\":\\\"uts.sdk.modules.zlText.ZlTextComponent\\\"}]\""
}
如果主模块的build.gradle已经存在UTSRegisterComponents,需要将现有配置与原有配置合并。参考:
buildConfigField "String", "UTSRegisterComponents", "\"[{\\\"name\\\":\\\"zl-a\\\",\\\"class\\\":\\\"zlA.ZlAComponent\\\"},{\\\"name\\\":\\\"zl-text\\\",\\\"class\\\":\\\"uts.sdk.modules.zlText.ZlTextComponent\\\"}]\""
注意:转义符不能删掉,格式一定严格一致。
hooksClass
hooksClass 为uts插件应用程序生命周期函数监听。
需要将hooksClass对应的内容添加到主模块的build.gradle中。参考配置
defaultConfig {
buildConfigField 'String[]', 'UTSHooksClassArray', '{\"uts.sdk.modules.zlText.ZlTextHook\"}'
}
如果主模块的build.gradle已经存在UTSHooksClassArray,需要将现有配置与原有配置合并。参考:
defaultConfig {
buildConfigField 'String[]', 'UTSHooksClassArray', '{\"uts.sdk.modules.zlText.ZlTextHook\",\"uts.sdk.modules.zla.ZLAHook\"}'
}
注意:转义符不能删掉,格式一定严格一致。
注意:暂不支持在build.gradle中设置applicationIdSuffix
,添加applicationIdSuffix
会导致组件初始化失败。
根据uts插件的资源目录,将对应的内容拷贝到android uts插件模块下。
说明:不存在的目录可以不处理。
拷贝uts插件libs下的库到android uts插件模块的libs下,并在android uts插件模块的build.gradle下添加依赖。
dependencies {
...
compileOnly fileTree(include: ['*.aar','*.jar'], dir: './libs')
}
注意:uts插件的本地libs下的依赖同样也需要添加到主模块中。
如果存在assets目录,需要将assets文件夹拷贝到android uts插件模块/src/main/
目录下。
如果存在res目录,需要将res文件夹拷贝到android uts插件模块/src/main/
目录下。
如果存在AndroidManifest.xml文件,需要将AndroidManifest.xml拷贝到android uts插件模块/src/main/
目录下。
注意:如果AndroidManifest.xml中设置了package字段,必须将此字段删除并将package的内容设置到build.gradle的namespace
。
将src目录下的所有文件拷贝到android uts插件模块/src/main/java
目录下。
将android uts插件模块的依赖添加到主模块和uniappx
模块的build.gradle的依赖中
dependencies {
...
// uts-progressNotification为示例,实际中你需要将uts-progressNotification替换成自己的模块名称
implementation project(':uts-progressNotification')
}
注意:uni-app集成uts插件文档到此截止。
根据unpackage/resource/{appid}/manifest.json
的配置,添加内置模块的配置。
以下模块可以忽略配置:
至此,uni-app x 导入原生项目的所有配置已经完成。uni-app x的启动、退出及运行期间通讯可以参考文档。