1.Android工程得module中集成RN
Android module中集成RN环境和正常app主工程集成方式一样
这里我在config.gradle中配置一下路径
react=[
"react_native_android" :"$rootDir/../node_modules/react-native/android",
"jsc_android_dist" :"$rootDir/../node_modules/jsc-android/dist",
"native_modules_gradle" :"../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle",
"react_native" : "com.facebook.react:react-native:+" ,
]
然后需要在主目录得builde.gradle中配置
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
maven {
//RN的相关配置,此处注意路径的配置
url ( rootProject.ext.react['react_native_android'])
}
maven {
// Android JSC is installed from npm
url ( rootProject.ext.react['jsc_android_dist'])
}
}
在需要rn环境的module得build.gradle中配置
apply from: "../module.build.gradle"
project.ext.react = [
enableHermes: false, // clean and rebuild if changing
]
def jscFlavor = 'org.webkit:android-jsc:+'
android {
//统一资源前缀,规范资源引用
resourcePrefix "rn_"
defaultConfig {
if (IS_APPLICATION.toBoolean()) {
applicationId "com.uxin.module_rn"
}
versionCode 1
versionName "1.0"
}
}
dependencies {
//rn 依赖
api rootProject.ext.react['react_native']
if (false) {
def hermesPath = "../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath + "hermes-debug.aar")
releaseImplementation files(hermesPath + "hermes-release.aar")
} else {
api jscFlavor
}
}
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
//apply from: file(rootProject.ext.react['native_modules_gradle']); applyNativeModulesAppBuildGradle(project)
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
然后在setting.gradle中配置相关得东西
然后RN相关操作直接在module中进行就可以了。
如果需要在APplication中初始化相关得东西,可以去网上找一下组件化如何处理application初始化的相关资料
这里记录一下碰到得问题
1.setting.gradle和module得buidle.gradle配置 applay from...主要是为了自动依赖Rn使用的三方依赖,以及生成packagelist来导入一些所需要package。
我在往其他rn工程里面发自己得原生项目得时候,发现生成的packagelist报错,会自动导入主app工程包名下的buildconfig,
经排查 最新版的react不会有这个问题
网友评论