在targetSDK版本更改后,让Gradle更新/更改其依赖性

时间:2018-07-08 14:06:13

标签: android android-studio gradle android-gradle dependency-management

如果我在Android Studio中有一个项目,并且一开始我的gradle应用程序文件如下所示:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.indapond.hellotoast"
        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'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    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'
}

如果我现在将compileSdkVersiontargetSdkVersion更改为其他内容,例如26, 我收到一个错误-因为我的appcompat-依赖关系不适用于该sdk版本。如何让Android Studio / Gradle根据SDK版本自动更改其依赖性? 到目前为止,我必须为目标sdk查找正确的appcompat版本,并手动进行更改。我讨厌那个。

0 个答案:

没有答案