Skip to content

Commit

Permalink
feat: 앱 gradle 설정 변경 (#522)
Browse files Browse the repository at this point in the history
* feat: 배포 설정 변경

* refactor: 앱 이름 변경
  • Loading branch information
krrong authored Oct 19, 2023
1 parent 72d0751 commit 19dc46b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
applicationId "com.now.naaga"
minSdk 28
targetSdk 33
versionCode 9
versionName "1.1.3"
versionCode 10
versionName "1.1.4"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunner "com.now.naaga.HiltTestRunner"
Expand All @@ -31,8 +31,15 @@ android {
}

buildTypes {
debug {
minifyEnabled true
firebaseCrashlytics {
mappingFileUploadEnabled false
}
}
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'

ndk.debugSymbolLevel 'FULL'
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<resources>
<string name="app_name">Naaga</string>
<string name="app_name">나아가</string>

<!-- BeginAdventureActivity -->
<string name="beginAdventure_precise_access">위치 권한 요청이 허용되었습니다</string>
Expand Down

0 comments on commit 19dc46b

Please sign in to comment.