मेरे पास एक ही चेतावनी है जो com.google.gms के कारण है: Google-सेवाएं।
इसका समाधान classpath com.google.gms को अपग्रेड करना है: google-services को classpath 'com.google.gms: google-services: 3.2.0' में build.gradle प्रोजेक्ट में फ़ाइल:
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.2.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
एंड्रॉइड स्टूडियो वर्जन में 3.1 निर्भरता शिकायत वाले शब्द को कार्यान्वयन के लिए बदल दिया गया है
एंड्रॉइड स्टूडियो 3.1 में चेतावनी के साथ निर्भरताएं
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:27.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
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'
}
एंड्रॉइड स्टूडियो 3.1 में निर्भरताएं ठीक हैं
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
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'
}
नई परियोजना के लिए एंड्रॉइड स्टूडियो 3.1 द्वारा ग्रेडेल उत्पन्न।
Https://docs.gradle.org/current/userguide/d dependency_management_for_java_jectjects.html पर जाएं
विवरण के लिए https://docs.gradle.org/current/userguide/declaring_dependencies.html