Skip to content

Commit

Permalink
chore: sdk 버전 카탈로그
Browse files Browse the repository at this point in the history
  • Loading branch information
junjange committed Aug 20, 2024
1 parent f94879c commit 8f83dcd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
14 changes: 7 additions & 7 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ val releaseStoreFile = keystoreProperties.getProperty("release.storeFile") ?: ""
val releaseStorePassword = keystoreProperties.getProperty("release.storePassword") ?: ""

android {
namespace = "com.happy.friendogly"
compileSdk = 34
namespace = libs.versions.applicationId.get()
compileSdk = libs.versions.compileSdk.get().toInt()

defaultConfig {
applicationId = "com.happy.friendogly"
minSdk = 26
targetSdk = 34
versionCode = 7
versionName = "0.2.2"
applicationId = libs.versions.applicationId.get()
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
versionCode = libs.versions.versionCode.get().toInt()
versionName = libs.versions.versionName.get()

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
7 changes: 7 additions & 0 deletions android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[versions]
applicationId = "com.happy.friendogly"
compileSdk = "34"
minSdk = "26"
targetSdk = "34"
versionCode = "8"
versionName = "0.3.0"

agp = "8.3.0"
kotlin = "1.9.24"
coreKtx = "1.13.1"
Expand Down

0 comments on commit 8f83dcd

Please sign in to comment.