# 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

### LOKALISE ###
-keep class com.lokalise.** { *; }
-dontwarn com.lokalise.*
-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

# Keep Material Components
-keep class com.google.android.material.** { *; }
-dontwarn com.google.android.material.**


-keep class com.suno.android.common_data.services.** { *; }
-keep class com.suno.android.ui.screens.navigation.** { *; }

-keep class com.suno.android.common_networking.di.NetworkingServicesModule { *; }
-keep class com.suno.android.common_networking.remote.** { *; }


# Keep Compose Navigation classes
-keep class androidx.navigation.** { *; }
-keep class kotlinx.serialization.** { *; }
-keep class kotlin.Metadata { *; }

# Keep serializable classes and avoid stripping serializers
-keep @kotlinx.serialization.Serializable class * { *; }
-keep class * extends kotlinx.serialization.KSerializer { *; }

# Crashlytics
-keepattributes SourceFile,LineNumberTable        # Keep file names and line numbers.
-keep public class * extends java.lang.Exception  # Optional: Keep custom exceptions.

-keep class **.BuildConfig { *; }

-keep class kotlin.jvm.internal.** { *; }

#Singular
-keep class com.singular.sdk.** { *; }
-keep public class com.android.installreferrer.** { *; }
# Uncomment this line in case your are calling the 'revenue' function using the Google billing library
-keep public class com.android.billingclient.** { *; }

#MVI internal types
-keep class * extends com.suno.android.common_mvi.MviEffect { *; }
-keep class * extends com.suno.android.common_mvi.MviEvent { *; }
-keep class * extends com.suno.android.common_mvi.MviState { *; }
