@
nicevar 感谢回复。我这个就是单独的工程,不过是从 application 改成 library 的,其他的都没有变化。不过不管是放在 APP 里面的 module 还是这种改的独立 library module,最终生成的 aar 都有这种多余的 armeabi 目录,不知道是不是 ndk 和 CMake 两个各生成了一份,用 AS 比较少,翻了不少资料,也没搞定这个问题...
build.gradle 内容如下:
<pre>
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 26
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags "-std=c++11"
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), '
proguard-rules.pro'
}
debug {
debuggable true
jniDebuggable true
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}
android.enableBuildCache=false
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
</pre>