
# allowing for obfuscation on AttributeEx's gson child classes

-keepclassmembers,allowobfuscation class buzz.getcoco.iot.android.AttributeEx$* {
  @com.google.gson.annotations.SerializedName <fields>;
}

# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# retaining enums of the package
-keepclassmembers enum buzz.getcoco.iot.* { *; }

# retaining all command classes
-keepclassmembers class * extends buzz.getcoco.iot.Command

# retaining all command response classes
-keepclassmembers class * extends buzz.getcoco.iot.CommandResponse

# Native class
# keep the class and specified members from being renamed only
-keepnames class buzz.getcoco.iot.Native { native*; }
# retaining nativeMethods
-keepclassmembers class buzz.getcoco.iot.Native { native*; }

# NativeCallbacks class
# keep the class and specified members from being removed or renamed
-keep class buzz.getcoco.iot.NativeCallbacks { *; }

# refer https://github.com/google/gson/blob/master/examples/android-proguard-example/proguard.cfg

##---------------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*

# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep class * implements 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>;
}

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

