targetSDK 28应该使用什么支持库版本?

时间:2018-07-03 05:47:20

标签: android android-sdk-tools android-9.0-pie

我正在经历article,它对update your project's compileSdkVersion and targetSdkVersion to API 28说。所以我做了,但是支持库给出了错误,例如支持库不应使用与compileSdk版本不同的版本

enter image description here

我尝试将其更新为28.0.0,但无法正常工作并说

Failed to resolve: com.android.support:appcompat-v7:28.0.0

我知道它仍然可以与27.1.1一起使用,但是使用什么正确的版本却不会出现红色下划线?

编辑

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"
            }
        }
    }

}

2 个答案:

答案 0 :(得分:5)

我知道已经回答了这个问题,但是我今天也需要更新我的回答,上面答案中的任何一个链接都没有真正告诉我要输入的内容。所以我必须使用以下内容:

*   Trying ::1...
* TCP_NODELAY set
* Connected to localhost (::1) port 8081 (#0)
> GET / HTTP/1.1
> Host: localhost:8081
> User-Agent: curl/7.54.0
> Accept: */*
> 
< HTTP/1.1 200 OK
< Date: Mon, 27 Aug 2018 17:10:01 GMT
< Connection: keep-alive
< Content-Length: 24
< 
* Connection #0 to host localhost left intact
<div>bob,sue,steve</div>

我希望这可以帮助其他人寻找放置在那里的东西。

答案 1 :(得分:3)

您可以将Revision 28.0.0 Alpha 1用于android p 但这是预览版

访问https://developer.android.com/preview/release-notes

相关问题