Skip to content

Commit

Permalink
release: 안드로이드 1.0.0 출시 (#627)
Browse files Browse the repository at this point in the history
* fix: 난독화 오류 수정

* feat: versionName 1.0.0 변경

* config: 버전 코드 변경
  • Loading branch information
kimhm0728 authored Oct 2, 2024
1 parent e5a300f commit 816ee8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId = "com.mulberry.ody"
minSdk = 26
targetSdk = 34
versionCode = 7
versionName = "1.0"
versionCode = 10
versionName = "1.0.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
buildConfigField("String", "BASE_DEV_URL", properties["BASE_DEV_URL"].toString())
Expand Down
5 changes: 4 additions & 1 deletion android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@
-keep class com.mulberry.ody.data.retrofit.* { *; }
-keep class com.mulberry.ody.domain.apiresult.ApiResult
-keep class com.mulberry.ody.data.remote.core.service.* { *; }
-keep class com.mulberry.ody.data.remote.core.entity.* { *; }
-keep class com.mulberry.ody.data.local.entity.eta.* { *; }
-keep class com.mulberry.ody.domain.model.* { *; }

# moshi
-keep class com.squareup.moshi.** { *; }
-keep class com.mulberry.ody.data.remote.thirdparty.address.response.* { *; }
-keep class com.mulberry.ody.data.remote.thirdparty.address.response.coord.* { *; }
-keep class com.mulberry.ody.data.remote.thirdparty.address.response.coord.* { *; }

0 comments on commit 816ee8c

Please sign in to comment.