如何在Gradle 3.0.0上使用'implementation / api'

时间:2018-04-23 05:44:10

标签: android android-studio gradle android-gradle build.gradle

首先,我需要明确说明我在Android Studio中没有太多时间,而且最近我将Android Studio更新到了最新版本。我意识到我使用的是过时的代码,并将我的根build.gradle文件中的“编译”配置更改为“实现”或“ api '但它一直给我警告。

我想将此项目连接到Firebase,但是当我点击按钮时,它总是告诉我解决Gradle错误或重新同步。

[编辑]这是我的代码段:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.simplifiedcoding.firealert"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    api fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.google.firebase:firebase-messaging:15.0.0'
    implementation 'com.android.volley:volley:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

apply plugin: 'com.google.gms.google-services'

[编辑]这是构建日志

上的输出
Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html

每次我进行Gradle Sync时,总是会给我一个错误,提到“编译”配置已弃用,我需要将其替换为“ implementation / api ” 。问题是,我的代码中没有看到一个“编译”配置行。

1 个答案:

答案 0 :(得分:0)

更改第一行应用内级别gradle文件..

Show command line afterwards