proguard Questions
6
I have some error, after updated kotlin version (ext.kotlin_version) to 1.6.10:
com.android.tools.r8.internal.E00: Unexpected type in conversion to primitive: OBJECT
Execution failed for task ':ap...
Retraction asked 15/3, 2022 at 15:14
3
Solved
I recently upgraded the Android Gradle Plugin in my Android app project from version 7.4.2 to 8.0.2. However, I'm now encountering an error during the release build when the minifyReleaseWithR8 tas...
Spinoza asked 13/6, 2023 at 7:5
3
Solved
Crashes in Firebase Crashlytics appear with a note how to fix a problem:
Fatal Exception: java.lang.IllegalStateException: TypeToken must be created with a type argument: new TypeToken<...>()...
Boiardo asked 11/5, 2023 at 7:7
5
Please help on this error.Below is error logcat:
Caused by: java.lang.VerifyError: Verifier rejected class edu.mit.jwi.morph.SimpleStemmer: java.util.List edu.mit.jwi.morph.SimpleStemmer.getNounCo...
2
Solved
My app uses Jackson. I got minimized builds mostly working with this configuration:
# don't obfuscate Jackson classes
-keep class com.fasterxml.** { *; }
# don't strip runtime annotations
-keepat...
2
Solved
I have already included following line to keep all files inside the package.
-keep class com.fasterxml.** { *; }
I am getting following exception.
Caused by: java.lang.IllegalArgumentExceptio...
4
I have started publishing my app to the Android play store and need to upload a symbols.zip file to de-obfuscate my crash reports. When I build my app in Unity 2020.1.0f1 ( had the same problem in ...
Chlamys asked 23/8, 2020 at 7:57
1
I am running a Flutter release build and am getting warnings Proguard configuration rule does not match anything. See below for a full list.
Should this be raised to Flutter GitHub issues or am I d...
Knighterrantry asked 22/10, 2023 at 21:59
1
hello guys i am currently develop android app, i have the intention to use proguard to protecting my app from reverse engineering
however, after i applied proguard to my app was an error like this ...
16
AGPBI gives this as output:
> Task :app:minifyReleaseWithR8
AGPBI: {"kind":"warning","text":"Unexpected reference to missing service class: META-INF/services/r...
2
How to automatically obfuscate a Play Framework web app when the play state|dist command is executed?
The idea is to use Proguard to perform Java code obfuscation.
There are plugins for SBT, such...
Angloindian asked 25/3, 2014 at 22:41
2
We developed a web application with play 2.2.3 and want to obfuscate it. I am trying to use sbt-proguard plugin. I put the line below to PROJECT_FOLDER/project/plugins.sbt file
addSbtPlugin("com.t...
Parthen asked 10/7, 2014 at 7:6
6
Solved
I'm retrieving a json and when I convert it to List using gson, the app crashes. The proguard is on and the problem is there.
fun getQuestions(): List<Question>? {
val json = getQuestionsJso...
5
Solved
i try obfuscate my code of android app with ProGuard. But after this my app give exception at running:
11-15 01:46:26.818: W/System.err(21810): java.lang.RuntimeException: Missing type parameter....
2
Solved
I'm creating a native android app and I want to release it.
I'm using retrofit and Gson converter. Also a search view.
For the release I have set up the proguard rules, as suggested by retrofit:
...
Dicast asked 15/10, 2017 at 21:49
5
Solved
I already made a Flutter app. The release apk is about 14MB. I searched methods to minify this and found this ons: https://flutter.io/android-release/#enabling-proguard
But my question is, how can...
1
Solved
I recently upgraded the Android Gradle Plugin in my Android app project from version 7.4.2 to 8.2.2. However, I'm now encountering an error during the release build when the minifyReleaseWithR8 tas...
Included asked 20/2 at 11:0
2
Solved
The application works stably on tested emulators in the studio and real devices. When uploading to the Internal Testing section in Google Play, the device consistently crashes:
Google Pixel 6...
Slippy asked 22/2 at 12:44
3
Solved
When I use
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
everything works perfectly.
But if change...
3
Solved
My app crashes because of my Proguard error. I have posted this question somewhere too.
How can I format the proguard error? Kindly help me out to solve this:
My build.gradle:
apply plugin: 'com....
Jurgen asked 1/8, 2016 at 13:15
1
I am getting below error on building the release apk with R8 enabled:
Task :app:minifyReleaseWithR8
AGPBI: {"kind":"warning","text":"Missing classes detected whil...
Hie asked 19/9, 2021 at 9:57
4
I'm developing an SDK (Android library), and I have to obfuscate a large part of my code so the customer may not try and play with internal code.
My lib is coded in Kotlin, and I used Proguard to o...
3
Solved
I use proguard on my project which is used android DataStore. It worked fine without proguard. But when it is obfuscated with proguard the following error occured:
java.lang.RuntimeException: Field...
3
How to keep private Inner Class in ProGuard.
I am already using($ for inner class) below code in my proguard.cfg but its not working.
-keep public class com.xxx.droid.activity.LoginActivity$JsInt...
2
Solved
I was using react-native-config to support multiple flavours for multiple release builds. I've created multiple .env files also and all the debug builds are able to access it and getting the config...
Rinse asked 22/6, 2022 at 3:18
1 Next >
© 2022 - 2024 — McMap. All rights reserved.