私はこれを経験していました 記事 、それはupdate your project's compileSdkVersion and targetSdkVersion to API 28
。だから私はやったが、サポートライブラリはcompileSdkバージョンとは異なるバージョンを使用すべきではないというエラーを出しました
私はそれを28.0.0に更新しようとしましたが、機能していません
Failed to resolve: com.Android.support:appcompat-v7:28.0.0
私はそれが27.1.1
しかし、赤い下線が付かない正しいバージョンは何ですか?
[〜#〜] edit [〜#〜]
build.gradleファイル
apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'
apply plugin: 'kotlin-Android-extensions'
apply plugin: 'kotlin-kapt'
Android {
compileSdkVersion 28
defaultConfig {
applicationId "in.eightfolds.safety"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}
ext.support_version = '28.0.0'
ext.room_version = "1.1.1"
ext.lifecycle_version = "1.1.1"
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.Android.support:appcompat-v7:$support_version"
implementation 'com.Android.support.constraint:constraint-layout:1.1.1'
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'
// ViewModel and LiveData
implementation "Android.Arch.lifecycle:extensions:$lifecycle_version"
kapt 'com.Android.databinding:compiler:3.1.3'
//Room (remove apply plugin: 'kotlin-kapt' at top)
implementation "Android.Arch.persistence.room:runtime:$room_version"
kapt "Android.Arch.persistence.room:compiler:$room_version"
implementation "com.Android.support:design:$support_version"
implementation 'com.github.bumptech.glide:glide:4.7.1'
kapt 'com.github.bumptech.glide:compiler:4.6.1' // for Kotlin
implementation 'com.Android.volley:volley:1.1.0'
implementation 'com.pddstudio:encrypted-preferences:1.3.0'
implementation 'com.nabinbhandari.Android:permissions:3.6'
implementation 'com.google.code.gson:gson:2.8.4'
}
//below part of code credit to https://stackoverflow.com/a/42957234/6478047
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.Android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion "$support_version"
}
}
}
}
Android pにRevision 28.0.0 Alpha 1
を使用できますが、プレビューバージョンです
これはすでに回答済みですが、今日も更新する必要があり、上記の回答からのリンクのどちらも実際に何を置くべきかを教えてくれませんでした。だから私は次のものを使わなければなりませんでした:
implementation 'com.Android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.Android.support:design:28.0.0-rc01'
implementation 'com.Android.support:animated-vector-drawable:28.0.0-rc01'
implementation 'com.Android.support:support-v4:28.0.0-rc01'
implementation 'com.Android.support:support-media-compat:28.0.0-rc01'
implementation 'com.Android.support:support-vector-drawable:28.0.0-rc01'
これが他の誰かがそこに何を置くべきかを探すのに役立つことを願っています。