Have you enabled multidexing?. Do extend your main Application class with MultiDexApplication. I have got additional exception mesage before the error. They are as follows.
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space
2 errors; aborting
This clearly tells that the error occurred due to out of memory. Try the following:
- extend your main Application class with MultiDexApplication.
- close unused applications from background and restart Android Studio.
This will do the trick ;)