没有在路径上找到类“android.support.v7.internal.Widget.TintManager”:DexPathList.
我在应用程序中使用了许多第三方库.这是否会导致此问题?
毕业文件:
apply plugin: 'com.androID.application'repositorIEs { mavenCentral() maven { url 'http://maven.stickerpipe.com/artifactory/stickerfactory' }}androID { compileSdkVersion 23 buildToolsversion '23.0.1' defaultConfig { applicationID "xxxxxxxxx" minSdkVersion 16 targetSdkVersion 22 versionCode 1 versionname "1.0" multIDexEnabled true } buildTypes { release { MinifyEnabled true proguardfiles getDefaultProguardfile('proguard-androID.txt'),'proguard-rules.pro' } } packagingOptions { exclude 'meta-inf/liCENSE' exclude 'meta-inf/liCENSE-FIREBASE.txt' exclude 'meta-inf/NOTICE' } dexOptions { incremental true javaMaxHeapSize "4g" }}dependencIEs { apply plugin: 'com.Google.gms.Google-services' compile 'com.Google.androID.gms:play-services:8.1.0' compile filetree(include: ['*.jar'],dir: 'libs') compile 'de.hdodenhof:circleimagevIEw:1.2.1' compile 'com.androID.support:recyclervIEw-v7:23.0.1' compile 'com.androID.support:appcompat-v7:23.0.1' compile 'com.journeyapps:zxing-androID-embedded:3.0.1@aar' compile 'com.Google.zxing:core:3.2.0' compile 'com.androID.support:design:23.0.1' compile 'com.squareup.picasso:picasso:2.4.0' compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0' compile('com.github.ganfra:material-spinner:1.1.0') { exclude group: 'com.androID.support',module: 'appcompat-v7' } compile 'com.cesarferreira.colorize:library:0.2.1' compile 'com.instaBUG.library:instaBUGsupport:1+' compile('vc908.stickers:stickerfactory:0.2.2@aar') { transitive = true; } compile 'com.androID.support:multIDex:1.0.0' compile('com.mixpanel.androID:mixpanel-androID:4.6.4') { exclude group: 'com.androID.support',module: 'appcompat-v7' }}解决方法 升级到AndroID Studio 2.0后,我遇到了同样的问题.我更新了不是最新的依赖项,现在它运行正常.
通过交叉引用我们的毕业文件,我相信您需要更新您的设计支持库:
compile 'com.androID.support:design:23.1.1'总结
以上是内存溢出为你收集整理的没有在路径上找到类“android.support.v7.internal.widget.TintManager”:DexPathList全部内容,希望文章能够帮你解决没有在路径上找到类“android.support.v7.internal.widget.TintManager”:DexPathList所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)