-keep class hms.webrtc.** { *; }
-keep class live.hms.** { *; }
## okhttp
# Please add these rules to your existing keep rules in order to suppress warnings.
# This is generated automatically by the Android Gradle plugin.
-dontwarn org.bouncycastle.jsse.BCSSLParameters
-dontwarn org.bouncycastle.jsse.BCSSLSocket
-dontwarn org.bouncycastle.jsse.provider.BouncyCastleJsseProvider
-dontwarn org.conscrypt.Conscrypt$Version
-dontwarn org.conscrypt.Conscrypt
-dontwarn org.conscrypt.ConscryptHostnameVerifier
-dontwarn org.openjsse.javax.net.ssl.SSLParameters
-dontwarn org.openjsse.javax.net.ssl.SSLSocket
-dontwarn org.openjsse.net.ssl.OpenJSSE


##---------------Begin: proguard configuration for Gson  ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature

# For using GSON @Expose annotation
-keepattributes *Annotation*

# Gson specific classes
-dontwarn sun.misc.**
#-keep class com.google.gson.stream.** { *; }

# Application classes that will be serialized/deserialized over Gson
-keep class com.google.gson.examples.android.model.** { <fields>; }

# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep class * extends com.google.gson.TypeAdapter
-keep class * implements com.google.gson.TypeAdapterFactory
-keep class * implements com.google.gson.JsonSerializer
-keep class * implements com.google.gson.JsonDeserializer

# Prevent R8 from leaving Data object members always null
-keepclassmembers,allowobfuscation class * {
  @com.google.gson.annotations.SerializedName <fields>;
}

# Retain generic signatures of TypeToken and its subclasses with R8 version 3.0 and higher.
-keep,allowobfuscation,allowshrinking class com.google.gson.reflect.TypeToken
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken

##---------------End: proguard configuration for Gson  ----------

## protobuf

-dontwarn com.google.protobuf.AbstractMessageLite
-dontwarn com.google.protobuf.Any$Builder
-dontwarn com.google.protobuf.Any
-dontwarn com.google.protobuf.AnyOrBuilder
-dontwarn com.google.protobuf.ByteString
-dontwarn com.google.protobuf.CodedInputStream
-dontwarn com.google.protobuf.ExtensionRegistryLite
-dontwarn com.google.protobuf.GeneratedMessageLite$Builder
-dontwarn com.google.protobuf.GeneratedMessageLite$DefaultInstanceBasedParser
-dontwarn com.google.protobuf.GeneratedMessageLite$ExtendableMessage
-dontwarn com.google.protobuf.GeneratedMessageLite$MethodToInvoke
-dontwarn com.google.protobuf.GeneratedMessageLite
-dontwarn com.google.protobuf.Internal$EnumLite
-dontwarn com.google.protobuf.Internal$EnumLiteMap
-dontwarn com.google.protobuf.Internal$EnumVerifier
-dontwarn com.google.protobuf.Internal$FloatList
-dontwarn com.google.protobuf.Internal$IntList
-dontwarn com.google.protobuf.Internal$ProtobufList
-dontwarn com.google.protobuf.Internal
-dontwarn com.google.protobuf.InvalidProtocolBufferException
-dontwarn com.google.protobuf.MessageLite
-dontwarn com.google.protobuf.MessageLiteOrBuilder
-dontwarn com.google.protobuf.Parser

