Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android multidex support library using eclipse

Using Eclipse, is possible to generate an Android project using multidex for creating multiple dex files? Searching over the net I found how to do that using gradle but nothing about to use that on Eclipse without gradle

like image 786
Plebios Avatar asked Oct 23 '14 14:10

Plebios


1 Answers

It looks like ADT's ant-tasks project is no longer maintained (it resides under 'legacy' folder).
So if you can't migrate to Gradle, you can edit the DexExecTask manually. You'll have of course to rebuild the project locally..

[Edit - 10/25/2014] maven-android-plugin does support multi-dex. However, it currently has a small issue: secondary dex files placed in wrong location. This pull request strives to fix that, so stay tuned! (Fixed in 4.0.0)

like image 69
Alex Lipov Avatar answered Nov 05 '22 03:11

Alex Lipov