Android unspecified' depends on one or more Android Libraries but is a jar 的解決方法
引入一個其他模組庫作為module的時候遇到下面的報錯:
unspecified’ depends on one or more Android Libraries but is a jar
引入的模組專案版本不一致,導致的衝突。
比如: android support包的版本不對,自帶的是 android-support-v4.jar, 但專案中使用的是support-v13:
compile ‘com.android.support:support-v13:+’
如果直接使用自帶的support-v4,則會和專案中的support-v13發生版本衝突,報下面的錯誤:
解決方法是 直接 exclude 不需要的 庫。
compile ("com.meiyou:live_answer:${LIVE_ANSWER_VERSION}"){
exclude(group:"com.meiyou", module : "account")
}
相關文章
- depends on one or more Android Libraries but is a jarAndroidJAR
- Dynamics CRM the field cannot be deleted because it is used in one or more process的解決方法delete
- android studio導jar包找不到類的解決方法AndroidJAR
- android: ADB錯誤“more than one device and emulator”Androiddev
- android/libs/libammsdk.jar" already exists! 解決方法AndroidJAR
- This template depends on the Android Support libraryAndroid
- [android]android工程引用第三方jar提示找不到相關class的解決方法AndroidJAR
- “Validation failed for one or more entities”異常的解決辦法AI
- 異常解決——The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than oneServerZed
- [Android]解決android65K方法引用限制Android
- [轉]Android ANR 分析解決方法Android
- yum [Errno 256] No more mirrors to try 解決方法
- Android錯誤解決方法集錦Android
- Android Studio 包衝突的解決方法Android
- [android]adb remount失敗的解決方法AndroidREM
- Android Studio 包衝突解決方法Android
- Android 8.0 的部分坑及對應解決方法Android
- Mysql的error while loading shared libraries解決方法MySqlErrorWhile
- android中使用jar庫的限制AndroidJAR
- android方法數超過64K的解決方案Android
- Android 中 View.setEnabled(false) 無效的解決方法AndroidViewFalse
- Android: The following classes could not be instantiated: 解決方法Android
- Android 解決方法數 65536 (65k) 限制Android
- implementation 'com.guo.android_extend:android-extend:1.0.6'失敗解決方法Android
- maven下載jar包下載不下來的解決方法MavenJAR
- Android中靜態jar庫AndroidJAR
- Android Studio 解決編譯報錯 Could not download aapt2-windows.jarAndroid編譯APTWindowsJAR
- Android中的onWindowFocusChanged()方法詳解Android
- 有效解決Android SDK Manager無法更新下載的方法Android
- android 專案中出現紅色感嘆號的解決方法Android
- Android應用解決65K方法數限制Android
- android StartActivityForResult()方法詳解Android
- More than one file was found with OS independent path
- Android com.android.support衝突解決Android
- android原始碼檢視 android-support-v4.jarAndroid原始碼JAR
- Android 解決Android的TextView和EditText換行問題AndroidTextView
- js在Android的WebView中parseInt轉換不正確解決方法JSAndroidWebView
- Android動態載入jar/dexAndroidJAR