gpt4 book ai didi

Android 无法识别变体 arm-debug 和设备的 apk

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:57:58 24 4
gpt4 key购买 nike

我有 .so 文件和 jar,但是当我运行它时出现错误:无法识别变体 arm-debug 和设备的 apk。我在这里是菜鸟,所以我一定做错了什么,但我似乎无法弄清楚。有任何想法吗?我正在使用 Android Studio 1.1.0 和 genymotion 进行仿真。

这是我的构建文件的样子:

apply plugin: 'com.android.application'

android {

compileSdkVersion 22
buildToolsVersion "22.0.0"
defaultConfig {
applicationId "com.ctech.music.androidstreamer"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
x86 {
ndk {
abiFilter "x86"
}
}
arm {
ndk {
abiFilters "armeabi-v7a", "armeabi"
}
}
mips {
ndk {
abiFilter "mips"
}
}

}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/notice.txt'
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.0.+'
compile 'com.android.support:recyclerview-v7:22.0.+'
compile files('libs/fmmr.jar')
}

最佳答案

在 defaultConfig 的 build.gradle 上添加要构建的操作

ndk {
moduleName "yourlibraryname"
}

像这样

defaultConfig {
applicationId "com.ctech.music.androidstreamer"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"

ndk {
moduleName "yourlibraryname"
}

}

并在 android {} 检查您的体系结构的末尾添加它

android {
...
splits {
abi {
enable true
reset()
include 'x86', 'armeabi-v7a', 'mips'
universalApk true
}
}
}

关于Android 无法识别变体 arm-debug 和设备的 apk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29182833/

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