Error:Execution failed for task ‘:Application:transformClassesWithDexFor
- Home
- chevron_right
- Solutions
- chevron_right
- Error:Execution failed for task ‘:Application:transformClassesWithDexFor
Error:Execution failed for task ':Application:transformClassesWithDexForMyFlavorName'. > com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/bin/java'' finished with non-zero exit value 2
I had this error after updating the project to the latest Build Tools 23.0.0. After spending some hours on google to find a solution without any success, I tried to deactivate the Instant Run option from Preferences. And when I ran the app, it worked!
This is not really a solution, but if you get this error at least you can run your app if you uncheck “Enable Instant Run to swap code/resource on deploy (default enabled) .
Related
Search In Blog
Want to donate?
Categories
Recent Posts: My Android Solutions
Android Parse JSON file from Assets
If you ever wondered how to read and parse a simple JSON file stored in the assets directory of your Android project, here is a way to do it.
Android Simple Section RecylerView
In this tutorial I will create a simple Sectioned RecyclerView that will show 2 sections and a few items in each section and how to move an item from one section to another. Note: For RecyclerView I used AndroidX imports and not android.support.v7.widget.RecyclerView! Setup We need to import the recycler view from AndroidX. The build.gradle…
Android Squared CardView
Recently, I had to add a perfect square CardView and I wanted to achieve this without hardcoding its width and height. I happily discovered the power of ConstraintLayout and this is how I managed to create a perfect square which should work on every dimension. In my project I created a RecyclerView with 2 columns,…