আমার একটি একই সতর্কতা com.google.gms: গুগল-পরিষেবাগুলির কারণে হয়েছে।
সমাধানটি ক্লাসপথ com.google.gms আপগ্রেড করতে হবে: বিল্ডড্র্যাড প্রকল্পে ফাইলে ক্লাসপথ 'com.google.gms: গুগল পরিষেবাগুলি: 3.2.0' এ গুগল-পরিষেবাগুলি:
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
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'
}
অ্যান্ড্রয়েড স্টুডিওতে নির্ভরতা ঠিক আছে ৩.১
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'
}
নতুন প্রকল্পের জন্য গ্রেডেল অ্যান্ড্রয়েড স্টুডিও ৩.১ দ্বারা উত্পন্ন হয়।
পরিদর্শন https://docs.gradle.org/current/userguide/dependency_management_for_java_projects.html
বিশদগুলির জন্য https://docs.gradle.org/current/userguide/declaring_d dependferences.html