Patrick MacDowell
Patrick MacDowell
Looks like an Android Studio 2.0 issue (Not that this is surprising). http://stackoverflow.com/questions/36549135/android-studio-2-0-gradle-error-noclassdeffounderror-could-not-initialize-clas There is more info, but for now, stay away from Android 2.0. Still a pain to deal...
Looks like that was not the fix. Downgraded back to 1.5.1 and it is still force closing with the same NoClassDefFoundError.
I too wanted this feature added. I just updated the code and made a pull request (https://github.com/Tibolte/ElasticDownload/pull/34) to solve said issue. Once it is updated into master, this can be...
It looks like you added the dependency just fine, but did you add the repository as well? android { repositories { maven { url "http://dl.bintray.com/glomadrian/maven" } } }
Same issue on my end for an apk build I am testing: ``` android.app.UiAutomation.throwIfNotConnectedLocked (UiAutomation.java:676) android.app.UiAutomation.disconnect (UiAutomation.java:228) android.app.Instrumentation.finish (Instrumentation.java:198) androidx.test.runner.MonitoringInstrumentation.finish (MonitoringInstrumentation.java:95) androidx.test.runner.AndroidJUnitRunner.finish (AndroidJUnitRunner.java:108) androidx.test.runner.AndroidJUnitRunner.onStart (AndroidJUnitRunner.java:101) android.app.Instrumentation$InstrumentationThread.run (Instrumentation.java:1741) ``` I can...