PeopleInSpace/wearApp/proguard-rules.pro

60 lines
1.6 KiB
Prolog

# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/jooreill/devtools/adt/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.kts.kts.kts.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# keep everything in this package from being removed or renamed
-keep class com.surrus.** { *; }
-keep class androidx.wear.** { *; }
# okhttp
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
-dontwarn okio.**
-dontwarn com.squareup.okhttp.**
-dontnote android.net.http.*
-dontnote org.apache.commons.codec.**
-dontnote org.apache.http.**
-keep,allowoptimization class com.google.android.libraries.maps.** { *; }
-keep,allowoptimization class com.google.android.apps.gmm.renderer.** { *; }
-keepnames class * implements android.os.Parcelable
-keepclassmembers class * implements android.os.Parcelable {
public static final *** CREATOR;
}
-dontwarn android.security.NetworkSecurityPolicy
-keep class com.google.android.gms.** { *; }
-dontwarn com.google.android.gms.**
-dontwarn android.content.**
-keep class android.content.**
-keep class android.support.** { *; }
-keep interface android.support.** { *; }
-renamesourcefileattribute SourceFile
-keepattributes SourceFile,LineNumberTable
# Firebase Authentication
-keepattributes Signature
-keepattributes *Annotation*
#Kotlin
-dontwarn kotlin.**
-dontwarn org.jetbrains.annotations.NotNull