android - Use multiDexEnabled without Gradle but Eclipse build process instead -
since latest sdk version, much more simple create applications multiple dex files ( https://developer.android.com/tools/building/multidex.html ), question is, can new feature used when i'm not using gradle build process "old" eclipse build chain?
the "multidexenabled true" in gradle build file must transmittible android compiler in other ways?
i have had same issue. utilize next workaround. have added 'android-support-multidex' lib folder , update 'dependecices' tag in gradle in next way
dependencies { compile filetree(dir: 'libs', include: '*.jar', exclude: 'android-support-multidex.jar') compile 'com.android.support:multidex:1.0.1'}
i hope useful you.
android eclipse android-gradle dex multidex
No comments:
Post a Comment