Status Update
Comments
uc...@google.com <uc...@google.com> #2
Hello,
Thank you for reaching out to us with your request.
We have duly noted your feedback and will thoroughly validate it. While we cannot provide an estimated time of implementation or guarantee the fulfillment of the issue, please be assured that your input is highly valued. Your feedback enables us to enhance our products and services.
We appreciate your continued trust and support in improving our Google Cloud Platform products. In case you want to report a new issue, Please do not hesitate to create a new issue on the
Once again, we sincerely appreciate your valuable feedback; Thank you for your understanding and collaboration.
ma...@gmail.com <ma...@gmail.com> #3
Being able to view the available backups in console would be helpful
uc...@google.com <uc...@google.com> #4
ag...@google.com <ag...@google.com> #5
ga...@google.com <ga...@google.com> #6
ga...@google.com <ga...@google.com> #7
- app/build/intermediates/dex/debug/mergeExtDexDebug/out
- app/build/intermediates/dex/debug/mergeLibDexDebug/out
- app/build/intermediates/dex/debug/mergeProjectDexDebug/out
? Also, which other plugins do you apply in your application module?
ma...@gmail.com <ma...@gmail.com> #8
3 dex files
- app/build/intermediates/dex/debug/mergeLibDexDebug/out
671 dex files
- app/build/intermediates/dex/debug/mergeProjectDexDebug/out
1 dex file
ma...@gmail.com <ma...@gmail.com> #9
```
plugins {
id("com.android.application")
kotlin("android")
kotlin("android.extensions")
kotlin("kapt")
id("com.google.firebase.firebase-perf")
id("io.fabric")
id("com.github.triplet.play")
id("io.gitlab.arturbosch.detekt")
id("com.github.ben-manes.versions")
}
```
ma...@gmail.com <ma...@gmail.com> #11
Thanks!
Description
This is the exception:
```
Caused by: java.lang.ClassNotFoundException: Didn't find class "my.domain.path.MyClassName" on path: DexPathList[[zip file "/data/app/my.domain.myapp-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
```
This happens both on debug builds (isMinifyEnabled = false) and release builds (isMinifyEnabled = true).
Rolling back to AGP 3.4 fixes the issue.
I'd be glad to give you any more info you'd need or perform any other task that might help debugging.
Thanks,
Bye,
Marco
Some of our config details:
compileSdkVersion = 28
buildToolsVersion = "28.0.3"
minSdkVersion = 21
targetSdkVersion = 28
Studio Build:
Android Studio 3.5 Beta 4
Build #AI-191.7141.44.35.5619324, built on May 30, 2019
JRE: 1.8.0_202-release-1483-b49-5587405 x86_64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
macOS 10.14.5
Version of Gradle Plugin:
3.5.0-beta04
Version of Gradle:
5.4.1
Steps to Reproduce:
1. Upgrade Gradle plugin version from 3.4.0 to 3.5.0-beta04 in build.gradle
2. Build and run project on an Android 5.x device
3. App crashes with `ClassNotFoundException`