2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 13:47:41 +00:00

Making sure proguard is not removing anything from bouncy/spongycastle

Some classes are only loaded dynamically and proguard would not see it.
This commit is contained in:
Albert Vaca 2016-02-12 08:36:58 -08:00
parent 62742ff8ae
commit 88b7c9898f

5
proguard-rules.pro vendored
View File

@ -29,4 +29,7 @@
-dontwarn io.netty.**
-dontwarn org.spongycastle.**
-keepattributes SourceFile,LineNumberTable
-keepattributes SourceFile,LineNumberTable,Signature
-keep class org.spongycastle.** {*;}
-keep class org.bouncycastle.** {*;}