Appcenter android 构建无法在设备中安装

Appcenter android build fails to install in device

我已经在 AppCenter 中配置了我的 React-Native 应用程序以进行构建和分发。一切正常,突然之间,构建失败并出现以下错误

> Task :app:stripReleaseDebugSymbols FAILED
Support for ANDROID_NDK_HOME is deprecated and will be removed in the future. Use android.ndkVersion in build.gradle instead.

> Task :app:mergeExtDexRelease

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:stripReleaseDebugSymbols'.
> No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

关注此 link https://github.com/microsoft/appcenter/issues/2144 并将我的成绩文件更新为

buildscript {
    ext {
        ndkVersion = "20.1.5948944"
    }
    
    dependencies {
        classpath("com.android.tools.build:gradle:4.1.0")
   }

和gradle-wrapper.properties到

distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip

此后构建工作正常,但构建后分发的应用程序无法安装在设备上并出现“应用程序未安装”错误。我尝试了不同的版本,但到目前为止没有成功。

有类似的问题。通过查看构建日志检查 VSAC 支持哪些 ndk 版本后,我使用以下 ndk 版本更新了 android/build.gradle 并且它有效。

buildscript {
    ext {
        ...
        ndkVersion = "18.1.5063045"
    }
    ...
}

我能够通过以下设置解决问题

在 gradle-wrapper.properties 中将 distributionUrl 更新为

distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

在 android/build.gradle 中将 gradle 版本更新为

classpath("com.android.tools.build:gradle:4.2.0")

将 react-native 版本更新为 0.65.1

npm i react-native@0.65.1

更新了所有相关包以与此 react-native 版本兼容

npm update "react-native"

在此之后,我能够在应用中心构建它并能够分发和安装该应用程序