欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

[Android 除錯] Conflict with dependency

程序员文章站 2022-05-07 23:45:27
Android Studio build 時的錯誤訊息 : Conflict with dependency ......

android studio build 時的錯誤訊息 : conflict with dependency
詳細錯誤訊息 : 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.
原因 : project compiler 和 avd 模擬器的 sdk 版本不一致 (前者為 26,後者為 27)
解法 : add build dependencies
    - fix dependency resolution errors
   
------------------------------------------------------------------------------------------------------

[Android 除錯] Conflict with dependency
圖 1 error message by android studio

[Android 除錯] Conflict with dependency
圖 2 resolution

[Android 除錯] Conflict with dependency
圖 3 resolution

[Android 除錯] Conflict with dependency
圖 4 解決後的 androidmanifest.xml,下方多出兩個 meta-data 中介設定,用來解決版本衝突的問題