gpt4 book ai didi

android - 未找到兼容的并排 NDK 版本。默认为 20.0.5594570

转载 作者:行者123 更新时间:2023-12-03 13:25:09 25 4
gpt4 key购买 nike

我收到上述错误

我的 gradle 看起来像这样

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
buildToolsVersion "29.0.3"

defaultConfig {
applicationId "com.example.hypersignwalletcorekotlin"
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

}
project.ext {
walletcore_version = "2.0.5"
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "com.trustwallet:wallet-core:$walletcore_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

无法理解为什么会这样。

谢谢

最佳答案

修复:
添加 ndkVersion到你的模块的 build.gradle

    android.ndkVersion  "your-installed-ndk-version"
some examples .您可以从文件 $NDK/source.properties 中找到您的 NDK 版本。
背景信息:
您可能使用的是 AGP/Android Studio 版本 3.6+:“从 Android Gradle 插件 (AGP) 3.6+ 开始,添加了 known good NDK 概念,即发布该 AGP 版本时的 known good/tested NDK version”。如果出现以下情况,AGP 将使用该内部 NDK 版本:
  • 您没有使用 ndkVersion AGP 3.5 中添加的功能

  • 预计内部 NDK 将作为并排 NDK 位置安装:
    $SDK\ndk
    如果未安装:
  • AGP 3.6、AGP 4.0 会报错
  • AGP 4.1 会自动安装它。

  • 随着更新的 NDK 不断发布,内部嵌入的 NDK 版本很可能很快就会过时:如果您想使用更新的 NDK 版本,您确实需要使用 ndkVersion 配置 gradle .
    附加文件:
    引用 the official documentation详情。

    关于android - 未找到兼容的并排 NDK 版本。默认为 20.0.5594570,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61157024/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com