Android Studio 失败:生成失败,出现异常,找不到com.airbnb.androidrn0.70.6的www.example.com:lottie:5.1.4

xtupzzrd  于 2023-01-02  发布在  Android
关注(0)|答案(1)|浏览(117)

失败:生成失败,出现异常。

  • 出了什么问题:无法确定任务":app:compileDebugJavaWithJava"的依赖项。

Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. Could not find com.airbnb.android:lottie:5.1.4. Required by:
我的软件包. json enter image description here
构建版本gradle enter image description here
gradle.properties enter image description here
我试图用命令构建React原生Android APK文件:

  1. CD安卓
    1../梯度清洁
    1../gradlew构建
    我想建立Android APK文件,请帮助,谢谢大家.
s6fujrry

s6fujrry1#

    • 安卓系统/内部版本. gradle**

将此行添加到build.gradle并重试

def REACT_NATIVE_VERSION = new File(['node', '--print',"JSON.parse(require('fs').readFileSync(require.resolve('react-native/package.json'), 'utf-8')).version"].execute(null, rootDir).text.trim())

allprojects {
configurations.all {
resolutionStrategy {
force "com.facebook.react:react-native:" + REACT_NATIVE_VERSION
}
}

如果您不理解此here,可以查看所有聊天,我有相同问题,但我将此行添加到构建文件中,它对我有效
希望这对你有帮助!

相关问题