मैंने Google मैसेजिंग के साथ एंड्रॉइड ऐप और बैकएंड मॉड्यूल के साथ एंड्रॉइड स्टूडियो 2.2 पूर्वावलोकन 1 में एक नई परियोजना बनाई । यह एप्लिकेशन फ़ाइल है:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.xxx.xxx"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha1'
compile 'com.google.android.gms:play-services-gcm:9.0.0'
testCompile 'junit:junit:4.12'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support:support-annotations:23.4.0'
compile project(path: ':backend', configuration: 'android-endpoints')
}
लेकिन यह दे रहा है:
त्रुटि: निर्भरता के साथ संघर्ष 'com.google.code.findbugs: jsr305'। ऐप (1.3.9) और टेस्ट ऐप (2.0.1) के लिए हल किए गए संस्करण अलग-अलग हैं। देखें http://g.co/androidstudio/app-test-app-conflict जानकारी के लिए।
मैं Android पर नया हूं और यह खोजने में सक्षम नहीं हूं कि यह क्या त्रुटि है। मैं इसे कैसे ठीक करूं?