Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

37 řádky
731 B

  1. -allowaccessmodification
  2. -dontpreverify
  3. -dontusemixedcaseclassnames
  4. -dontskipnonpubliclibraryclasses
  5. -verbose
  6. -keepattributes *Annotation*
  7. -keepclasseswithmembernames class * {
  8. native <methods>;
  9. }
  10. -keepclassmembers enum * {
  11. public static **[] values();
  12. public static ** valueOf(java.lang.String);
  13. }
  14. -keepclassmembers class * implements android.os.Parcelable {
  15. public static final ** CREATOR;
  16. }
  17. -keep class androidx.annotation.Keep
  18. -keep @androidx.annotation.Keep class * {*;}
  19. -keepclasseswithmembers class * {
  20. @androidx.annotation.Keep <methods>;
  21. }
  22. -keepclasseswithmembers class * {
  23. @androidx.annotation.Keep <fields>;
  24. }
  25. -keepclasseswithmembers class * {
  26. @androidx.annotation.Keep <init>(...);
  27. }