Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.7 KiB

5 years ago
5 years ago
  1. # Add project specific ProGuard rules here.
  2. # You can control the set of applied configuration files using the
  3. # proguardFiles setting in build.gradle.
  4. #
  5. # For more details, see
  6. # http://developer.android.com/guide/developing/tools/proguard.html
  7. # If your project uses WebView with JS, uncomment the following
  8. # and specify the fully qualified class name to the JavaScript interface
  9. # class:
  10. #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  11. # public *;
  12. #}
  13. # Uncomment this to preserve the line number information for
  14. # debugging stack traces.
  15. -keepattributes SourceFile,LineNumberTable
  16. # If you after the line number information, uncomment this to
  17. # hide the original source file name.
  18. -renamesourcefileattribute SourceFile
  19. #App
  20. -keep class org.dystopia.email.** {*;}
  21. -keepnames class org.dystopia.email.** {*;}
  22. #AndroidX
  23. -keep class androidx.appcompat.widget.** {*;}
  24. -keep class androidx.appcompat.app.AppCompatViewInflater {<init>(...);}
  25. -keepclassmembers class * implements android.os.Parcelable {static ** CREATOR;}
  26. #android.os.BadParcelableException: Parcelable protocol requires a Parcelable.Creator object called CREATOR on class androidx...
  27. #IAB
  28. -keep class com.android.vending.billing.** {*;}
  29. #JavaMail
  30. #-dontshrink
  31. -keep class javax.** {*;}
  32. -keep class com.sun.** {*;}
  33. -keep class myjava.** {*;}
  34. -keep class org.apache.harmony.** {*;}
  35. -keep class mailcap.** {*;}
  36. -keep class mimetypes.** {*;}
  37. -dontwarn java.awt.**
  38. -dontwarn java.beans.Beans
  39. -dontwarn javax.activation.**
  40. -dontwarn javax.security.**
  41. #jsoup
  42. -keeppackagenames org.jsoup.nodes
  43. #JCharset
  44. -keep class net.freeutils.charset.** {*;}
  45. #dnsjava
  46. -keep class org.xbill.DNS.** {*;}
  47. -dontwarn sun.net.spi.nameservice.**
  48. #OpenPGP
  49. -keep class org.openintents.openpgp.** {* ;}