我正在尝试在
eclipse中构建Multidex apk,但无法成功.
我尝试了以下步骤,在Android应用程序中配置Multidex支持:
>我已将位于/ extras / android / support / multidex /的Multidex库添加到我的项目中.
>由于我的应用程序具有自定义应用程序类,我已将android.support.multidex.MultiDexApplication类扩展到我的应用程序.
我仍然无法建立apk.
Android developer也没有任何关于在eclipse中构建Multidex apk的文档,它只有gradle和Android Studio的文档.
解决方法
您必须修改build.gradle以在buildconfig,buildType或productFlavour部分下添加multiDexEnabled true
defaultConfig { // The support library goes as back as Android-14,and is not required for 21+ minSdkVersion 14 // Enabling multidex support. multiDexEnabled true }
如果您正在使用旧的Ant,这是一个阻塞问题,因此您必须转移到gradle或maven或使用旧的繁琐解决方案
http://android-developers.blogspot.com.es/2011/07/custom-class-loading-in-dalvik.html