我正在开发一个移动应用程序并使用react-native开发它。我可以通过
在模拟器上成功运行该项目react-native run-android
并且我可以使用
命令成功发布捆绑包./gradlew bundleRelease
我什至可以将我的应用程序成功上传到Google Play商店。 问题是某些设备无法安装该应用程序,它将失败。
在互联网上搜索后,我发现问题出在不同设备上的各种不同cpu架构上(据我了解)。我的模拟器正在使用32位cpu(x86),并且构建成功在我的计算机上运行模拟器。
我不拥有Android设备,所以发现调试错误的最佳方法是使用Firebase的“测试实验室”并观察输出。
我相信除了cpu架构之外还有另一个问题,那就是爱马仕(Hermes)。我正在禁用我的app / build.gradle中的爱马仕,但是当我发布捆绑包并在Firebase Test Lab上对其进行测试时,该应用程序将失败并给出我这个输出;
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libhermes.so
FATAL EXCEPTION: create_react_context
Process: com.lockerapp, PID: 18180
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libhermes.so
at com.facebook.soloader.SoLoader.doLoadLibraryBySoName(SoLoader.java:738)
at com.facebook.soloader.SoLoader.loadLibraryBySoName(SoLoader.java:591)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:529)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:484)
at com.facebook.hermes.reactexecutor.HermesExecutor.<clinit>(HermesExecutor.java:20)
at com.facebook.hermes.reactexecutor.HermesExecutorFactory.create(HermesExecutorFactory.java:27)
at com.facebook.react.ReactInstanceManager$5.run(ReactInstanceManager.java:949)
at java.lang.Thread.run(Thread.java:764)
这是我的环境;
System:
OS: macOS 10.14.4
CPU: (4) x64 Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz
Memory: 242.76 MB / 8.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 12.9.0 - /usr/local/bin/node
Yarn: 1.17.3 - /usr/local/bin/yarn
npm: 6.10.3 - /usr/local/bin/npm
Watchman: 4.9.0 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 12.4, macOS 10.14, tvOS 12.4, watchOS 5.3
Android SDK:
API Levels: 25, 26, 27, 28, 29
Build Tools: 26.0.2, 27.0.3, 28.0.3, 29.0.2
System Images: android-28 | Intel x86 Atom_64, android-28 | Google Play Intel x86 Atom
IDEs:
Android Studio: 3.4 AI-183.6156.11.34.5692245
Xcode: 10.3/10G8 - /usr/bin/xcodebuild
npmPackages:
react: 16.8.6 => 16.8.6
react-native: 0.60.5 => 0.60.5
npmGlobalPackages:
create-react-native-app: 2.0.2
react-native-cli: 2.0.1
这是我的app / build.gralde;
apply plugin: "com.android.application"
import com.android.build.OutputFile
project.ext.react = [
entryFile: "index.js",
enableHermes: false, // clean and rebuild if changing
]
apply from: "../../node_modules/react-native/react.gradle"
def enableHermes = project.ext.react.get("enableHermes", false);
android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.lockerapp"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 11
versionName "1.1.5"
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
storeFile file(MYAPP_UPLOAD_STORE_FILE)
storePassword MYAPP_UPLOAD_STORE_PASSWORD
keyAlias MYAPP_UPLOAD_KEY_ALIAS
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
}
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
// Caution! In production, you need to generate your own keystore file.
// see https://facebook.github.io/react-native/docs/signed-apk-android.
signingConfig signingConfigs.release
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// https://developer.android.com/studio/build/configure-apk-splits.html
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
packagingOptions {
pickFirst '**/armeabi-v7a/libc++_shared.so'
pickFirst '**/x86/libc++_shared.so'
pickFirst '**/arm64-v8a/libc++_shared.so'
pickFirst '**/x86_64/libc++_shared.so'
pickFirst '**/x86/libjsc.so'
pickFirst '**/armeabi-v7a/libjsc.so'
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.facebook.react:react-native:+" // From node_modules
if (enableHermes) {
def hermesPath = "../../node_modules/hermesvm/android/";
debugİmplementation files(hermesPath + "hermes-debug.aar")
releaseİmplementation files(hermesPath + "hermes-release.aar")
} else {
implementation jscFlavor
}
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
我一直在努力为尽可能多的设备发布捆绑包并将其发布到Google Play商店。我真的不在乎使用hermes,或者只要构建成功并能在所有可能的设备上运行,我就不会在意。 >
是否存在一个已知的指南,我可能会错过为所有cpu架构发布捆绑软件,并避免了Hermes的错误? 任何答案表示赞赏,谢谢。
更新:
经过大量研究,我仍然找不到解决方案,但是我找到了解决该问题的方法,而不是使用.p创建一个.aab文件。
./gradlew bundleRelase
我正在使用命令创建通用APK文件;
./gradlew assembleRelease
生成的.apk文件已被Google Play商店接受,并且我已经通过了Firebase测试实验室的测试,还可以在32位和64位本地android模拟器上运行,缺点当然是我的下载大小增加了(从8mb增至15mb),但仍然是一阵子的解决方案。
答案 0 :(得分:0)
我能够启用hermes
并使用此修复程序创建捆绑包并将其提交给Playstore
if (getGradle().getStartParameter().getTaskRequests().toString().toLowerCase().contains("bundle")) {
packagingOptions {
exclude '**/libhermes-inspector.so'
exclude '**/libhermes-executor-debug.so'
exclude '**/libjscexecutor.so'
}
}
https://github.com/facebook/react-native/issues/25927#issuecomment-535695869
如果您要测试最终的bundle
文件,我建议您做几件事:
从一个Android设备创建配置文件
java -jar bundletool.jar get-device-spec --output=device-spec.json
为该特定配置文件生成apk
java -jar bundletool.jar build-apks --device-spec=device-spec.json --bundle=app-release.aab --output=device.apks
将生成的APK安装到设备中
java -jar bundletool.jar install-apks --apks=device.apks
此外,您可以使用android apk分析器查看这些APK,并确保其中有hermes
二进制文件,而没有与libjs相关的二进制文件。