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.

38 lines
1.1 KiB

  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. -keep class eu.faircode.email.**
  20. -keepnames class eu.faircode.email.** { *; }
  21. #JavaMail
  22. -dontshrink
  23. -keep class javax.** {*;}
  24. -keep class com.sun.** {*;}
  25. -keep class myjava.** {*;}
  26. -keep class org.apache.harmony.** {*;}
  27. -dontwarn java.awt.**
  28. -dontwarn java.beans.Beans
  29. -dontwarn javax.activation.**
  30. -dontwarn javax.security.**
  31. #jsoup
  32. -keeppackagenames org.jsoup.nodes