# 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

# // ======= gson =======
#-keep class com.google.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
-keep class sun.misc.Unsafe { *; }
#-keep class com.google.gson.stream.** { *; }

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

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

-dontnote sun.misc.Unsafe
-dontnote com.google.gson.internal.UnsafeAllocator
# // ======= gson =======

-keep class io.dclick.ads.unity.** {
    public *;
    public static *;
}
-keep interface io.dclick.ads.unity.**
-keep class io.dclick.ads.ad.DclickAds
-keep enum * { *; }

-keep class io.dclick.ads.AdManager {
    public static *;
}
-keep class io.dclick.ads.AdConfig {
    public *;
}

-keep class io.dclick.ads.banner.** { public *; }
-keep class io.dclick.ads.interstitial.** { public *; }
-keep class io.dclick.ads.nativ.** { public *; }
-keep class io.dclick.ads.rewarded.** { public *; }

-keep class io.dclick.ads.listeners.** {
    *;
}
-keep class io.dclick.ads.utils.Utils {
    public *;
}
-keep class io.dclick.ads.Image {
    public *;
}
#-keep class io.dclick.** {
#    *;
#}