Enabled obfuscation and added -keep rules

This commit is contained in:
Juha Heinanen
2026-07-16 21:15:41 +03:00
parent b227788cae
commit 44bf719274
+9 -7
View File
@@ -9,11 +9,13 @@
# Add any project specific keep options here: # Add any project specific keep options here:
-keepattributes LineNumberTable,SourceFile -keepattributes LineNumberTable,SourceFile
-dontobfuscate
# If your project uses WebView with JS, uncomment the following # Keep classes and members accessed via JNI
# and specify the fully qualified class name to the JavaScript interface -keep class com.tutpro.baresip.Api {
# class: native <methods>;
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { }
# public *;
#} -keep class com.tutpro.baresip.BaresipService {
native <methods>;
@androidx.annotation.Keep <methods>;
}