• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# The goal of this proguard configuration is to obfuscate the test-dump
2# program so that the heap dump it generates is an obfuscated heap dump.
3# This allows us to test that deobfuscation of the generated heap dump is
4# working properly.
5
6# All we care about is obfuscation. Don't do any other optimizations.
7-dontpreverify
8-dontoptimize
9-dontshrink
10
11-keep public class Main {
12  public static void main(java.lang.String[]);
13}
14
15-printmapping proguard.map
16