Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ dependencies {
implementation 'com.google.code.gson:gson:2.13.2'

// Dagger & KSP
implementation 'com.google.dagger:dagger:2.59'
ksp 'com.google.dagger:dagger-compiler:2.59'
implementation 'com.google.dagger:dagger:2.59.1'
ksp 'com.google.dagger:dagger-compiler:2.59.1'

implementation 'org.jetbrains.kotlin:kotlin-parcelize-runtime'

Expand Down
10 changes: 4 additions & 6 deletions app/proguard-project.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@
-keep class * implements com.tomclaw.appsend.dto.ApiResponse { *; }

# Parcelable (including kotlinx.parcelize support)
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
-keepclassmembers class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator CREATOR;
}
-keep class * implements android.os.Parcelable { *; }
-keepnames class * implements android.os.Parcelable
-keep @kotlinx.parcelize.Parcelize class * { *; }
-keepnames @kotlinx.parcelize.Parcelize class *

# Enums (required for Parcelable and Gson serialization)
-keepclassmembers enum * {
Expand Down
Loading