我正在更新我们的本机Android应用程序之一,当我上传apk(或捆绑包以播放商店时,我收到以下消息
我未使用任何本地第3方库,我的apk却不包含lib文件夹
这是我的buid.gradle
供参考
buildscript {
...
}
android {
compileSdkVersion 29
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "xx.xxx.xxxxx"
minSdkVersion 19
targetSdkVersion 29
versionCode 9
versionName '1.3'
multiDexEnabled true
}
dependencies {
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.gms:play-services-vision:19.0.0'
implementation 'com.google.firebase:firebase-analytics:17.2.1'
implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.edwardvanraak:MaterialBarcodeScanner:0.0.6-ALPHA'
compile('it.sephiroth.android.library.horizontallistview:hlistview:1.2.2') {
exclude group: 'com.android.support', module: 'support-v4'
}
implementation 'de.greenrobot:eventbus:2.4.0'
implementation 'com.mcxiaoke.volley:library:1.0.19'
// Google Play Services
compile('com.github.johnkil.android-robototextview:robototextview:4.0.0') {
exclude group: 'com.android.support', module: 'appcompat-v7'
}
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true
}
apply plugin: 'com.google.gms.google-services'
}
答案 0 :(得分:0)
该问题不是由任何本机依赖性引起的,因为我的项目没有这种依赖性。我通过在仅支持32位体系结构的GooglePlay上禁用较早的版本来解决了该问题。