Error running the build

Asked

Viewed 9 times

0

Good afternoon, I am trying to run my application and error occurs in build.Radle:

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

No settings like "Compile".

build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.alphatech.unidosdaleste"
        minSdkVersion 23
        targetSdkVersion 27
        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 'com.android.support:appcompat-v7:27.0.2'
    implementation 'com.android.support:support-v4:27.0.2'
    implementation 'com.android.support:design:27.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.firebase:firebase-database:16.0.3'
//    implementation 'com.google.android.gms:play-services-maps:17.0.0'
    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'
    implementation 'com.github.rtoshiro.mflibrary:mflibrary:1.0.0'
    apply plugin: 'com.google.gms.google-services'

}
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.