对于build.gradle配置,一切正常。
compileSdkVersion 26
defaultConfig {
applicationId "com.my.app"
minSdkVersion 16
targetSdkVersion 26
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
dependencies {
implementation project(':market_licensing')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:17.1.2'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.support:design:26.1.0'
implementation "com.android.support:appcompat-v7:26.1.0"
}
当我迁移到版本27时,
compileSdkVersion 27
defaultConfig {
applicationId "com.my.app"
minSdkVersion 16
targetSdkVersion 27
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
dependencies {
implementation project(':market_licensing')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:17.1.2'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.support:design:27.1.1'
implementation "com.android.support:appcompat-v7:27.1.1"
}
我有一个错误:
所有com.android.support库必须使用完全相同的版本 规范(混合版本可能导致运行时崩溃)。找到了 版本27.1.1、26.1.0。
为什么我仍显示与旧版本26.1.0冲突?我很干净。
答案 0 :(得分:0)
customtabs
需要提供版本27.1.1
...
implementation "com.android.support:customtabs:27.1.1"
implementation ("com.google.android.gms:play-services-ads:17.1.2") {
exclude group: "com.android.support", module: "customtabs"
}
答案 1 :(得分:0)
尝试清理并重建项目。另外,如果它不起作用,请检查所有依赖项是否都相同,并可能将版本更改为较新的或更旧的版本。
我也强烈建议您使用androidX,对我来说真的很好