mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-23 15:49:09 +00:00
14 lines
501 B
Prolog
14 lines
501 B
Prolog
# Keep native methods
|
|
-keepclassmembers class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# Keep classes that are used as a parameter type of methods that are also marked as keep
|
|
# to preserve changing those methods' signature.
|
|
-keep class helium314.keyboard.latin.Dictionary
|
|
-keep class helium314.keyboard.latin.NgramContext
|
|
-keep class helium314.keyboard.latin.makedict.ProbabilityInfo
|
|
|
|
# after upgrading to gradle 8, stack traces contain "unknown source"
|
|
-keepattributes SourceFile,LineNumberTable
|
|
-dontobfuscate
|