作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在尝试生成签名 APK 时,它显示以下错误消息。
条目名称 'META-INF/androidx.legacy_legacy-support-core-utils.version' 冲突
以前它可以正常工作几年。此外,我已经检查了另一台具有相同 android studio 和相同 gradle 版本的 PC,它在该 PC 中正常工作。我遇到这个问题,特别是一台 PC 本身,为什么?我在下面附上了 build.gradle。
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 19
targetSdkVersion 29
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
vectorDrawables {
useSupportLibrary = true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
//--Test
lintOptions {
checkReleaseBuilds false
}
flavorDimensions "default"
buildTypes {
publicDebug {
minifyEnabled false
initWith debug
//shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
res.srcDirs =
[
'src/main/res/layouts/stripchart/layout',
'src/main/res/layouts/stripchart',
'src/main/res/layouts/erfi/layout',
'src/main/res/layouts/erfi',
'src/main/res/layouts',
'src/main/res'
]
}
}
android {
useLibrary 'org.apache.http.legacy'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.multidex:multidex:2.0.1'
// Glide image library
implementation 'com.github.bumptech.glide:glide:4.11.0'
//material design
implementation 'com.google.android.material:material:1.0.0'
//Circular Image view
implementation 'com.mikhaellopez:circularimageview:3.0.2'
//Expandable layout
implementation 'com.github.florent37:expansionpanel:1.1.1'
//Vector drawables\
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
//Animated jsons
implementation 'com.airbnb.android:lottie:3.4.0'
// Dexter runtime permissions
implementation 'com.karumi:dexter:6.0.2'
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.12.0'
implementation 'com.squareup.retrofit2:converter-gson:2.6.0'
implementation 'com.google.code.gson:gson:2.8.6'
//DotsIndicator
implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:2.0.3'
//DateTimePciker BottomSheet
implementation 'com.github.florent37:singledateandtimepicker:2.0.4'
implementation 'com.google.android.gms:play-services-location:17.0.0'
//Location settings
implementation 'io.nlopez.smartlocation:library:3.3.3'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'org.florescu.android.rangeseekbar:rangeseekbar-library:0.4.0'
//Digital Signature
implementation 'com.kyanogen.signatureview:signature-view:1.0'
// Shimmer
// implementation 'com.facebook.shimmer:shimmer:0.5.0'
}
最佳答案
我找到了问题的根源。它在 输出.json .这是罪魁祸首。该文件由于某些 Activity 而损坏。我们必须从 Signed APK 生成的目标文件夹中删除该文件。它解决了这个问题。
关于android - 生成签名 APK 时出现 "androidx.legacy_legacy-support-core-utils.version collided"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62384084/
我添加了 BottomNavigationView,然后事情开始变得复杂。我不知道是什么导致了这个错误,当我构建项目时它没问题,但是当我想在模拟器中播放应用程序时 - 弹出这个错误。 这是我的buil
在尝试生成签名 APK 时,它显示以下错误消息。 条目名称 'META-INF/androidx.legacy_legacy-support-core-utils.version' 冲突 以前它可以正
我是一名优秀的程序员,十分优秀!