About 2,900,000 results
Open links in new tab
  1. How to use the ProGuard in Android Studio? - Stack Overflow

    Jan 2, 2014 · Try renaming your 'proguard-rules.txt' file to 'proguard-android.txt' and remove the reference to 'proguard-rules.txt' in your gradle file. The getDefaultProguardFile(...) call …

  2. Android: What are the recommended configurations for Proguard?

    I'm developing apps for Android and using Proguard to obfuscate the code. Currently i'm using ProGuard configurations: -optimizationpasses 5 -dontusemixedcaseclassnames …

  3. How to enable ProGuard obfuscation in Android Studio?

    To enable ProGuard in Android Studio. Below is the sample how to enable default ProGuard in Android Studio. Go to the build.gradle file of app enable the minifyEnabled true enable …

  4. What's the difference between "minifyEnabled" and "useProguard" …

    May 3, 2016 · android { buildTypes { debug { minifyEnabled true useProguard false proguardFiles getDefaultProguardFile('proguard-android.txt') } } } The built-in shrinker can only remove dead …

  5. android - Should I use ProGuard? - Stack Overflow

    Dec 27, 2015 · It is quite easy to reverse engineer Android applications, so if you want to prevent this from happening, yes, you should use ProGuard for its main function: obfuscation. …

  6. How to write android proguard rules? - Stack Overflow

    Sep 4, 2019 · 8 I want to learn how to write android proguard rules in order to obfuscate the code and make it harder to reverse engineer the app.

  7. android - How to prepare a proguard file and whats included in it ...

    Jul 6, 2016 · To make your APK file as small as possible, you should enable shrinking to remove unused code and resources in your release build. Code shrinking is available with ProGuard, …

  8. proguard-android-optimize.txt vs proguard-android.txt in Android …

    Jul 5, 2019 · 30 Take a look at the Android source code over here. Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file instead of this one, which …

  9. Android ProGuard: Most Aggressive Optimizations - Stack Overflow

    74 Android's official proguard documentation shows two primary optimizations: set minifyEnabled to true use proguard-android-optimize.txt instead of proguard-android.txt Are these two the …

  10. What is the difference between proguard-android.txt and …

    Jan 1, 2016 · The getDefaultProguardFile('proguard-android.txt') method obtains the default ProGuard settings from the Android SDK tools/proguard/ folder. The proguard-android …