Status Update
Comments
uc...@google.com <uc...@google.com> #2
I just attached a minimal test application with duplicated and multiline traces. Provided are a couple of logcat files and screenshots.
To me this isn'r really a big problem, since AS compiles my application and lets me debug it. That's what I use it for in my company. I just found it a bit annoying that something that worked one way in AS 2.x and 3.0, suddenly changed in 3.1. The new way results more time-consuming to me while debugging and reviewing the logs.
Could this be made configurable? Not necessarily in the UI, but editing some properties file. Thanks. :)
To me this isn'r really a big problem, since AS compiles my application and lets me debug it. That's what I use it for in my company. I just found it a bit annoying that something that worked one way in AS 2.x and 3.0, suddenly changed in 3.1. The new way results more time-consuming to me while debugging and reviewing the logs.
Could this be made configurable? Not necessarily in the UI, but editing some properties file. Thanks. :)
ma...@gmail.com <ma...@gmail.com> #3
I have the same problem.
ga...@google.com <ga...@google.com> #6
I also have the same problem.
ga...@google.com <ga...@google.com> #7
I also have the same problem.
ma...@gmail.com <ma...@gmail.com> #8
Was it fixed reverting to the old behavior, or was it fixed making the deduplication configurable?
What release version will include the fix?
What release version will include the fix?
ma...@gmail.com <ma...@gmail.com> #9
I still have the same problem on my version.
Android Studio 3.1.1
Build #AI-173.4697961, built on April 4, 2018
JRE: 1.8.0_152-release-1024-b02 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 8.1 6.3
Screenshot attached.
Is there any way to customize this kind of behavior?
Android Studio 3.1.1
Build #AI-173.4697961, built on April 4, 2018
JRE: 1.8.0_152-release-1024-b02 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 8.1 6.3
Screenshot attached.
Is there any way to customize this kind of behavior?
ma...@gmail.com <ma...@gmail.com> #11
how long before 3.2 is released? or should we just go back to 3.0 while we wait?
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`