Android重复依赖解决办法
程序员文章站
2022-03-09 17:22:50
参考文章:https://blog.csdn.net/qq_24216407/article/details/72842614 在build.gradle引用了Vlc的安卓包:de.mrmaffen:vlc-android-sdk:3.0.0 编译一切正常,运行报错: 大致意思是com.androi ......
参考文章:https://blog.csdn.net/qq_24216407/article/details/72842614
在build.gradle引用了vlc的安卓包:de.mrmaffen:vlc-android-sdk:3.0.0
dependencies { implementation filetree(include: ['*.jar'], dir: 'libs') //noinspection gradlecompatible implementation 'com.android.support:appcompat-v7:28.0.0-rc02' implementation 'com.android.support.constraint:constraint-layout:1.1.3' 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' implementation 'de.mrmaffen:vlc-android-sdk:3.0.0' }
编译一切正常,运行报错: 大致意思是com.android.support 包引用重复
解决办法:在依赖中排除com.android.support
dependencies { implementation filetree(include: ['*.jar'], dir: 'libs') //noinspection gradlecompatible implementation 'com.android.support:appcompat-v7:28.0.0-rc02' implementation 'com.android.support.constraint:constraint-layout:1.1.3' 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' implementation ('de.mrmaffen:vlc-android-sdk:3.0.0') {exclude group: 'com.android.support'} }
推荐阅读
-
Android字体大小自适应不同分辨率的解决办法
-
Android CheckBox中设置padding无效解决办法
-
Android NoSuchFieldError解决办法
-
Android Caused by: java.lang.ClassNotFoundException解决办法
-
Android studio怎么为项目添加模块依赖?
-
Android 使用volley过程中遇到的问题解决办法
-
Android的App启动时白屏的问题解决办法
-
Android 中 android.view.WindowLeaked的解决办法
-
Android中Fragment 重叠遮盖问题解决办法
-
Android实现类似IOS右滑返回的效果(原因分析及解决办法)