I have replaced compile with implementation everywhere in my build.gradle file, still getting this warning "Configuration 'compile' in project ':app' is deprecated. Use 'implementation' instead." when building the project.
dependencies {
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true;
}
implementation('com.twitter.sdk.android:twitter:2.3.2@aar') {
transitive = true;
}
implementation('com.github.afollestad.material-dialogs:core:0.8.5.7@aar') {
transitive = true
}
implementation "com.android.support:multidex:1.0.2"
implementation "com.android.support:support-v4:${android_support_lib_version}"
implementation "com.android.support:appcompat-v7:${android_support_lib_version}"
implementation "com.android.support:cardview-v7:${android_support_lib_version}"
implementation "com.android.support:recyclerview-v7:${android_support_lib_version}"
implementation "com.android.support:palette-v7:${android_support_lib_version}"
implementation "com.android.support:design:${android_support_lib_version}"
implementation "com.android.support:customtabs:${android_support_lib_version}"
implementation "com.google.android.gms:play-services-base:${google_play_services_client_library_version}"
implementation "com.google.android.gms:play-services-analytics:${google_play_services_client_library_version}"
implementation "com.google.android.gms:play-services-gcm:${google_play_services_client_library_version}"
implementation "com.google.firebase:firebase-appindexing:${google_play_services_client_library_version}"
implementation "com.google.android.gms:play-services-auth:${google_play_services_client_library_version}"
implementation "com.google.code.gson:gson:2.8.2"
implementation "de.greenrobot:eventbus:2.4.0"
implementation "com.squareup.okhttp:okhttp-urlconnection:2.4.0"
implementation "com.squareup.okhttp:okhttp:2.4.0"
implementation "com.squareup.retrofit:retrofit:1.6.1"
implementation "org.apache.commons:commons-lang3:3.5"
implementation "com.github.bumptech.glide:glide:3.7.0"
}