fix: r8 exception for LocationManager (#566)

This commit is contained in:
callebtc 2026-01-08 17:31:50 +07:00 committed by GitHub
parent 5dc6369b8f
commit e313112d7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,3 +26,8 @@
-keepnames class org.torproject.arti.**
-dontwarn info.guardianproject.arti.**
-dontwarn org.torproject.arti.**
# Fix for AbstractMethodError on API < 29 where LocationListener methods are abstract
-keepclassmembers class * implements android.location.LocationListener {
public <methods>;
}