当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《在路径上找不到类"android.support.v7.internal.widget.TintManager":DexPathList》经验,为你挑选了2个好方法。

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

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

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

Gradle文件:

   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'
            }
}

aikmanr.. 21

升级到Android Studio 2.0后我遇到了同样的问题.我更新了不是最新的依赖项,现在运行正常.

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

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


RATHI.. 11

我将appcompat-v7降级为:

编译'com.android.support:appcompat-v7:23.1.1'

至:

编译'com.android.support:appcompat-v7:23.1.0'

它起作用了.



1> aikmanr..:

升级到Android Studio 2.0后我遇到了同样的问题.我更新了不是最新的依赖项,现在运行正常.

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

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



2> RATHI..:

我将appcompat-v7降级为:

编译'com.android.support:appcompat-v7:23.1.1'

至:

编译'com.android.support:appcompat-v7:23.1.0'

它起作用了.

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有