启用Multidex时发生错误

时间:2018-07-11 09:39:51

标签: java android multidex

我最近不得不在我的android studio项目中启用multidex,这是使用导入的模块构建的。它在主项目中表现不错,但是在使用import(来自主项目)模块构建的项目中却显示了multidex问题。我已遵循this文档来启用Multidex。由于application标签没有被覆盖,因此我遵循了相关的方法。现在我收到此错误:

  

任务':app:transformClassesWithMultidexlistForDebug'的执行失败。   java.io.IOException:无法编写[E:\ something \ SalesDemo> Updated \ app \ build \ intermediates \ multi-dex \ debug \ componentClasses.jar](无法>读取[E:\ something \ SalesDemo>已更新\ app \ build \ intermediates \ classes \ debug(;;;;;; **。class)]](无法读取[com]>(无法读取[smth](无法读取[infolinkplus](无法阅读
  [some.class](重复的zip条目
  [com / abc / def / some.class]))))))

这是我的build.gradle

apply plugin: 'com.android.application'

//noinspection GroovyMissingReturnStatement
android {
compileSdkVersion 25
  // buildToolsVersion "24.0.0"

defaultConfig {
    applicationId "com.abc.def.somethingotherthing"
    multiDexEnabled true
    minSdkVersion 16
    //noinspection OldTargetApi
    targetSdkVersion 22
    versionCode 16
    versionName "0.0.16"
}

buildTypes {

    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
//implementation 'com.android.support:multidex:1.0.3'
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:multidex:1.0.3'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'joda-time:joda-time:2.3'
compile 'com.google.android.gms:play-services-location:10.2.0'
compile project(':infolinkplus')
}

还有manifest文件:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.abc.def.somethingotherthing">

<application
    android:name="android.support.multidex.MultiDexApplication"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    tools:ignore="AllowBackup,GoogleAppIndexingWarning">
   ...
  //ACTIVITIES AND META-TAGS
  ...
    </application>


</manifest>

更改后,我进行了干净的构建并重新构建,但没有结果。 我该如何克服这个问题?预先感谢。

3 个答案:

答案 0 :(得分:0)

您必须更改Manifest才能提供MultiDex

<?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>

或者,如果您有自定义的Application类,则必须使用MultiDexApplication扩展它

public class MyApplication extends MultiDexApplication { ... }

答案 1 :(得分:0)

  

重复的zip条目   [com / abc / def / some.class]

在您的项目中,您必须拥有一个名称为some.class的类,将其重命名为其他名称

答案 2 :(得分:0)

尝试此代码... 我希望你做到了。.

        multiDexEnabled true
    compile 'com.android.support:multidex:1.0.1'

为应用程序级别创建类。

public class MyApplication extends MultiDexApplication {
@Override
public void onCreate() {
    super.onCreate();
}
}




        android:name="MyApplication" > // here define that class name that extends by MultiDexApplication