react-native > 0.63.2
安卓集成react-native時(shí)根據(jù)官網(wǎng)提供的文檔配置后们豌,跳轉(zhuǎn)到rn頁(yè)面時(shí)閃退,或者頁(yè)面不出現(xiàn)浅妆,可以試試下面的方法:
下載第三方依賴(lài)
yarn add jsc-android
在android/build.gradle
allprojects{}里配置
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
在app/build.gradle
dependencies{}里配置
def useIntlJsc = false
if (useIntlJsc) {
implementation 'org.webkit:android-jsc-intl:+'
} else {
implementation 'org.webkit:android-jsc:+'
}