python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Proguard/R8 how to not obfuscate only a part of the code?
I want to avoid obfuscating only a part of my code. Initially, I tried to use the -keep like this:
-keep class com.my.package.** { *; }
However, the only way I found to got this working as I needed w...

Victor Laerte
Votes: 0
Answers: 1
AGP 7+ / JDK 11 / release: ClassNotFoundException: Didn't find class "okhttp3.MultipartBody$Part" on path: DexPathList
As the title says, I'm having some issue on a project since we updated to Java 11 and to AGP 7+.
The issue only happens in release and when we make a retrofit call using okhttp3.MultipartBody :
2022-0...

Labotha
Votes: 0
Answers: 1