Skip to content

Commit

Permalink
hotfix : release mode 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kjh5833 committed Mar 22, 2021
1 parent bca9280 commit 36643f0
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 3 deletions.
10 changes: 10 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

signingConfigs {
release {
storeFile file('debug.keystore')
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}

buildTypes {
debug {
minifyEnabled false
Expand All @@ -25,6 +34,7 @@ android {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}

Expand Down
Binary file added app/debug.keystore
Binary file not shown.
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ dependencies {
// loading animation
implementation Libs.spinKit

implementation Libs.chuck
debugImplementation Libs.chuck
releaseImplementation Libs.releaseChuck
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ open class ChaiService : Service() {

channelRegister()

val icon = R.drawable.chuck_ic_search_white_24dp
val icon = R.drawable.ic_find
val title = "결제를 확인중 입니다"

val stopIcon = R.drawable.chuck_ic_delete_white_24dp
val stopIcon = R.drawable.ic_delete
val stopTitle = "결제를 중지하시려면 아래로 당겨주세요"
val stopBtnName = "중지"

Expand Down
9 changes: 9 additions & 0 deletions sdk/src/main/res/drawable/ic_delete.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
</vector>
9 changes: 9 additions & 0 deletions sdk/src/main/res/drawable/ic_find.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
</vector>

0 comments on commit 36643f0

Please sign in to comment.