Conflict with dependency'com 처리android.support:support-annotations' in project ':app'. 오류 메시지

1236 단어 AndroidAppAPP
AndroidStudio 3.0 이후 프로젝트를 작성할 때 annotations 메모 라이브러리 버전이 일치하지 않습니다. 다음과 같은 오류가 발생했습니다.
Error:Execution failed for task ':app:preDebugAndroidTestBuild'. > Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
주:AndroidStudio 3.0 이후 annotations 주석 라이브러리를 제공하였으며, 버전이 일치하지 않기 때문에 APP 디렉터리에서build가 필요합니다.gradle 설정 처리
처리 방법은 다음과 같습니다.
android {
    
   
}

configurations.all {
    resolutionStrategy.force 'com.android.support:support-annotations:27.1.1'
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    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'

}

기록 처리만 하고 잊어버리지 마세요!!!같은 오류가 발생하면 즉시 처리할 수 있기를 바랍니다!!!

좋은 웹페이지 즐겨찾기