找不到类"android.support.v7.internal.widget.TintManager";在路径上:DexPathList [英] Didn't find class "android.support.v7.internal.widget.TintManager" on path: DexPathList

查看:79
本文介绍了找不到类"android.support.v7.internal.widget.TintManager";在路径上:DexPathList的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经将支持库更新到版本23.0.1,并开始出现此错误.

I have updated support libraries to version 23.0.1 and started getting this error.

在路径:DexPathList上找不到类"android.support.v7.internal.widget.TintManager".

我在应用程序中使用了许多第三方库.会导致此问题吗?

I have used many third party libraries in the application.Would that cause this issue?

成绩文件:

   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后,我遇到了同样的问题.我更新了不是最新的依赖关系,现在可以正常运行了.

I had the same issue after upgrading to Android Studio 2.0. I updated my dependencies that weren't current and now it is running fine.

通过交叉引用我们的gradle文件,我认为您需要更新设计支持库:

By cross referencing our gradle files, I believe that you need to update your design support library:

compile 'com.android.support:design:23.1.1'

这篇关于找不到类"android.support.v7.internal.widget.TintManager";在路径上:DexPathList的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆