Skip to content

Commit

Permalink
v1.0.0(5)
Browse files Browse the repository at this point in the history
  • Loading branch information
wnehdals committed Feb 6, 2024
1 parent 339ebc5 commit f51078b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
# 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

-keepattributes Exceptions
-dontwarn com.google.**

# Gson specific classes
-dontwarn sun.misc.**
Expand All @@ -44,3 +45,20 @@
@com.google.gson.annotations.SerializedName <fields>;
}
-keep class com.kakao.sdk.**.model.* { <fields>; }
# Begin: Proguard rules for retrofit2
-dontwarn java.lang.invoke.**
# Platform calls Class.forName on types which do not exist on Android to determine platform.
-dontnote retrofit2.Platform
# Platform used when running on RoboVM on iOS. Will not be used at runtime.
-dontnote retrofit2.Platform$IOS$MainThreadExecutor
# Platform used when running on Java 8 VMs. Will not be used at runtime.
-dontwarn retrofit2.Platform$Java8
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
-dontwarn okio.**
# retrofit2 POJO model error
-keepclasseswithmembers class * {
@retrofit2.http.* <methods>;
}
#-
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ object Constants {
const val compileSdk = 33
const val minSdk = 24
const val targetSdk = 33
const val versionCode = 1
const val versionCode = 5
const val versionName = "1.0.0"
}

0 comments on commit f51078b

Please sign in to comment.