Error:execution Failed For Task ':app:dexdebug' After Importing Project From Eclipse To Android Studio
Solution 1:
I had this ProcessException.From what I have seen it is mainly due to the 64k method limitation. This may occur because your project has so many libraries added which may also mean that few of them are duplicate.
Issue I had was 64k limitation crossed because of duplicate dependencies included through PlayServices. ProcessException when buildToolsVersion is changed from 22.0.1 to 23.0.1 is my issue answered in SOF.
I think in your case that does not seem to be an issue for me. But still you can have multidex enabled. Do that too by following Building Apps with Over 65K Methods.
Also try the latest build tools version which is 23.0.2 from build-tools.
EDIT
For @EsoRimmer, it did not work just with MultiDex enabled but latest build tools version along with it made it work. So, using the latest build tools always a way to avoid unnecessary issues.
Post a Comment for "Error:execution Failed For Task ':app:dexdebug' After Importing Project From Eclipse To Android Studio"