From 816ee8c175dbca791fee6c907d645f8dc75c0146 Mon Sep 17 00:00:00 2001 From: Hyemin Kim Date: Wed, 2 Oct 2024 15:39:40 +0900 Subject: [PATCH] =?UTF-8?q?release:=20=EC=95=88=EB=93=9C=EB=A1=9C=EC=9D=B4?= =?UTF-8?q?=EB=93=9C=201.0.0=20=EC=B6=9C=EC=8B=9C=20(#627)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 난독화 오류 수정 * feat: versionName 1.0.0 변경 * config: 버전 코드 변경 --- android/app/build.gradle.kts | 4 ++-- android/app/proguard-rules.pro | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 77a6f8945..dda311a9c 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -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()) diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro index 5cfcd156c..25a24261d 100644 --- a/android/app/proguard-rules.pro +++ b/android/app/proguard-rules.pro @@ -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.* { *; } \ No newline at end of file +-keep class com.mulberry.ody.data.remote.thirdparty.address.response.coord.* { *; }