Didn't find class “android.support.multidex.MultiDexApplication” on path: DexPathList

后端 未结 13 719
渐次进展
渐次进展 2020-12-09 07:17

I\'m trying the new MultiDex Support on my app and so far I\'ve managed to compile my app correctly, but when running it, I get the following exception:



        
相关标签:
13条回答
  • 2020-12-09 07:45

    I recently had this issue. Despite no change to my configuration this error started occurring. I tried all of the suggested solutions including deleting the virtual device and creating a fresh one.

    However, I did notice that if I built an APK and dragged it into the emulator to install, it worked fine.

    In the end cleaning the project and re-running and then it worked.

    0 讨论(0)
  • 2020-12-09 07:46

    The solution didn't help me because I was using jetpack version ie androidx. libraries.

    Followed official doc.
    And
    I had to change name to androidx....Multidex.

    <application
                android:name="androidx.multidex.MultiDexApplication" >
            ...
    </application>
    

    Hope It helps other people looking for adding multidex with jetpack.

    0 讨论(0)
  • 2020-12-09 07:54

    Setting up your app project to use a multidex configuration requires that you make the following modifications to your app project, depending on the minimum Android version your app supports.

    If your minSdkVersion is set to 21 or higher, all you need to do is set multiDexEnabled to true in your module-level build.gradle file, as shown here:

    android {
        defaultConfig {
            ...
            minSdkVersion 21 
            targetSdkVersion 26
            multiDexEnabled true
        }
        ...
    }
    

    However, if your minSdkVersion is set to 20 or lower, then you must use the multidex support library as follows:

    • Modify the module-level build.gradle file to enable multidex and add the multidex library as a dependency, as shown here:

      android {
          defaultConfig {
              ...
              minSdkVersion 15 
              targetSdkVersion 26
              multiDexEnabled true
          }
          ...
      }
      
      dependencies {
        compile 'com.android.support:multidex:1.0.1'
      }
      
    • Depending on whether you override the Application class, perform one of the following:

      • If you do not override the Application class, edit your manifest file to set android:name in the tag as follows:

        <?xml version="1.0" encoding="utf-8"?>
        <manifest xmlns:android="http://schemas.android.com/apk/res/android"
            package="com.example.myapp">
            <application
                    android:name="android.support.multidex.MultiDexApplication" >
                ...
            </application>
        </manifest>
        
      • If you do override the Application class, change it to extend MultiDexApplication (if possible) as follows:

        public class MyApplication extends MultiDexApplication { ... }
        
      • Or if you do override the Application class but it's not possible to change the base class, then you can instead override the attachBaseContext() method and call MultiDex.install(this) to enable multidex:

        public class MyApplication extends SomeOtherApplication {
          @Override
          protected void attachBaseContext(Context base) {
             super.attachBaseContext(base);
             MultiDex.install(this);
          }
        }
        
    0 讨论(0)
  • 2020-12-09 07:57
    Delete ./gradle .idea and build directory
    Clean project
    Uninstall app if already install on device and again install
    
    0 讨论(0)
  • 2020-12-09 07:57

    The Problem is in Gradle File Please Increase the Version That's it

    buildscript {
        repositories {
            google()
            jcenter()
    
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.5.3'
    
        }
    }
    
    0 讨论(0)
  • 2020-12-09 08:01

    My configuration:

    buildscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:0.14.+' // 0.14.1, 2014-11-6
        }
    }
    
    dependencies {
        compile 'com.android.support:multidex:1.0.0'
    }
    
    android {
        compileSdkVersion = 21
        buildToolsVersion = "21.1.0"
    
        defaultConfig {
            minSdkVersion 14
            targetSdkVersion 21
            multiDexEnabled true
        }
    }
    

    Unfortunately, I have the same problem. But I found a strange situation:

    build/intermediates/dex/debug:

    -rw-rw-r--  1 andrew andrew  2221176 Nov  6 20:18 classes2.dex
    -rw-rw-r--  1 andrew andrew  8357596 Nov  6 20:18 classes.dex
    

    unzip apk, build/outputs/apk:

    -rw-rw-r-- 1 andrew andrew 8357596 Nov  6 20:18 classes2.dex
    -rw-rw-r-- 1 andrew andrew 2221176 Nov  6 20:18 classes.dex
    

    In apk, the main classes of classes.dex should be bigger than classes2.dex, but its not. I do also dex2jar & unzip jar to check classes, the application class is not there in classes.dex, its in classes2.dex contrarily.

    However, I should have fixed it. Here is my patched android gradle plugin you can try:

    buildscript {
        repositories {
            mavenCentral()
            maven { url 'https://github.com/yongjhih/android-gradle-plugin.m2/raw/master/' }
        }
        dependencies {
            classpath 'com.infstory.tools.build:gradle:0.14.+'
        }
    }
    

    The patch is in: https://github.com/yongjhih/android-gradle-plugin/commit/9c2212e3b1b4c6e1f7b47f2086aba1903a6258bf or https://android-review.googlesource.com/#/c/113331/

    issue: https://code.google.com/p/android/issues/detail?id=78761

    The official patch is https://android-review.googlesource.com/#/c/113201/ that already been merged, I think it might be fixed in next version.

    Already been fixed 0.14.2 (2014/11/10). (from http://tools.android.com/tech-docs/new-build-system)

    Release notes:
    
    0.14.2 (2014/11/10)
    
    Fix potential multi-dex issue where the dex files could be renamed during packaging, leading to the wrong main dex file being used.
    Fix versionNameSuffix support
    Fix BuildType.initWith to copy shrinkResources flag
    setup default proguard rule file if none are provided (SDK/tools/proguard/proguard-android.txt)
    BuildType.pseudoLocalesEnabled flag to include fake locales in apk.
    
    0 讨论(0)
提交回复
热议问题