-keepclasseswithmembers class * {
    @io.purchasely.* <methods>;
}

-keep class io.purchasely.ext.** { *; }
-keep class io.purchasely.models.** {*;}
-keep class io.purchasely.common.** {*;}
-keep class io.purchasely.views.template.models.** { *; }
-keep class io.purchasely.views.subscriptions.** { *; }
-keep class io.purchasely.views.PLYPurchaseFragment.* { *; }
-keep class io.purchasely.views.template.PLYTemplateFragment.* { *; }
-keep class io.purchasely.views.template.PLYViewController.* { *; }
-keep class io.purchasely.billing.** { *; }
-keep class io.purchasely.managers.** { *; }
-keep class io.purchasely.managers.PLYManager.* { *; }
-keep class io.purchasely.managers.PLYProductsManager.* { *; }
-keep class io.purchasely.models.PLYEventProperties.* { *; }
-keep class io.purchasely.storage.**

-keepclasseswithmembernames class io.purchasely.* {
     public <methods>;
}

-keepattributes InnerClasses
-keep class io.purchasely.R
-keep class io.purchasely.R$* {
    <fields>;
}

-keepnames class io.purchasely.managers.PLYManager
-keepnames class io.purchasely.ext.Purchasely
-keepnames class io.purchasely.views.PLYWebViewActivity
-keepnames class io.purchasely.billing.Store
-keepnames class io.purchasely.managers.PLYStoreManager
-keepnames class io.purchasely.billing.ReceiptValidationManager
-keepnames class io.purchasely.views.template.PLYViewController
-keepnames class io.purchasely.models.PLYEventProperties
-keepnames class io.purchasely.** { *; }

-keep class io.purchasely.google.**
-keepnames class io.purchasely.google.BillingRepository

#Kotlin Coroutines
# ServiceLoader support
-keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {}
-keepnames class kotlinx.coroutines.CoroutineExceptionHandler {}
-keepnames class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
-keepnames class kotlinx.coroutines.android.AndroidDispatcherFactory {}

-keep class kotlinx.coroutines.internal.MainDispatcherFactory {}
-keep class kotlinx.coroutines.CoroutineExceptionHandler {}
-keep class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
-keep class kotlinx.coroutines.android.AndroidDispatcherFactory {}

# Most of volatile fields are updated with AFU and should not be mangled
-keepclassmembernames class kotlinx.** {
    volatile <fields>;
}

# Same story for the standard library's SafeContinuation that also uses AtomicReferenceFieldUpdater
-keepclassmembernames class kotlin.coroutines.SafeContinuation {
    volatile <fields>;
}

#Kotlin
-dontwarn kotlin.**
-keepclassmembers class **$WhenMappings {
    <fields>;
}
-keepclassmembers class kotlin.Metadata {
    public <methods>;
}
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
    static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
}
# Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and
# EnclosingMethod is required to use InnerClasses.
-keepattributes Signature, InnerClasses, EnclosingMethod

# Retrofit does reflection on method and parameter annotations.
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations

# Retain service method parameters when optimizing.
-keepclassmembers,allowshrinking,allowobfuscation interface * {
    @retrofit2.http.* <methods>;
}

# Ignore annotation used for build tooling.
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

# Ignore JSR 305 annotations for embedding nullability information.
-dontwarn javax.annotation.**

# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
-dontwarn kotlin.Unit

# Top-level functions that can only be used by Kotlin.
-dontwarn retrofit2.KotlinExtensions
-dontwarn retrofit2.KotlinExtensions$*

# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
-if interface * { @retrofit2.http.* <methods>; }
-keep,allowobfuscation interface <1>

#Google Billing
-keep class com.android.vending.billing.**