Skip to content

Commit

Permalink
[AN] hotfix: 릴리즈 버전에서 카카오 로그인 안되는 이슈 (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
junjange authored Aug 10, 2024
1 parent 9874ec8 commit 285323a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
18 changes: 10 additions & 8 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId = "com.happy.friendogly"
minSdk = 26
targetSdk = 34
versionCode = 3
versionName = "0.2.0"
versionCode = 4
versionName = "0.2.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -46,6 +46,7 @@ android {
buildTypes {
debug {
isDebuggable = true
isMinifyEnabled = false
}
release {
isDebuggable = false
Expand All @@ -63,17 +64,18 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
dataBinding {
enable = true
}
viewBinding {
enable = true
}

buildFeatures {
buildConfig = true
viewBinding = true
dataBinding = true
}

packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
}

dependencies {
Expand Down
10 changes: 9 additions & 1 deletion android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,12 @@

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
#-renamesourcefileattribute SourceFile

-keep class com.kakao.sdk.**.model.* { <fields>; }
-keep class * extends com.google.gson.TypeAdapter

# https://github.com/square/okhttp/pull/6792
-dontwarn org.bouncycastle.jsse.**
-dontwarn org.conscrypt.*
-dontwarn org.openjsse.**

0 comments on commit 285323a

Please sign in to comment.