在我的build.gradle中
dependencies {
compile "com.android.support:support-v4:18.0.+"
compile fileTree(dir: 'libs', include: '*.jar')
compile project(":Vendor:NineOldAndroids:Library")
compile project(":Vendor:Unionpay:upomp_Res_v1_1")
compile project(":Vendor:ViewPagerIndicator:Library")
compile project(":Vendor:SlidingMenu-library")
}
我有一个依赖支持-v4,它是一个maven-repo(为什么我不直接包含support-v4.jar?我认为maven-repo是一个更好的方法来管理依赖关系,很容易避免包含support-v4很多次)
但是出现问题,我需要预测我的项目,maven-repo让我无法设置-libraryjars 'libs/android-support-v4.jar'
因为支持-v4在某处“动态”
我找不到正式的方法,任何人都可以解决它?