Skip to content

Commit

Permalink
feat: update agp version
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongHoonC committed Jun 19, 2024
1 parent 4c9a07f commit d77d9f0
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion android/festago/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
val agpVersion = "8.0.2"
val agpVersion = "8.4.0"
id("com.android.application") version agpVersion apply false
id("com.android.library") version agpVersion apply false

Expand Down
4 changes: 4 additions & 0 deletions android/festago/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ android {
namespace = "com.festago.festago.common"
compileSdk = 34

buildFeatures {
buildConfig = true
}

defaultConfig {
minSdk = 26
consumerProguardFiles("consumer-rules.pro")
Expand Down
6 changes: 5 additions & 1 deletion android/festago/data-legacy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ android {
namespace = "com.festago.festago.data"
compileSdk = 34

buildFeatures {
buildConfig = true
}

defaultConfig {
minSdk = 28

Expand Down Expand Up @@ -86,5 +90,5 @@ dependencies {
}

fun getSecretKey(propertyKey: String): String {
return gradleLocalProperties(rootDir).getProperty(propertyKey)
return gradleLocalProperties(rootDir, providers).getProperty(propertyKey)
}
6 changes: 5 additions & 1 deletion android/festago/data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ android {
namespace = "com.festago.festago.data"
compileSdk = 34

buildFeatures {
buildConfig = true
}

defaultConfig {
minSdk = 28

Expand Down Expand Up @@ -97,5 +101,5 @@ dependencies {
}

fun getSecretKey(propertyKey: String): String {
return gradleLocalProperties(rootDir).getProperty(propertyKey)
return gradleLocalProperties(rootDir, providers).getProperty(propertyKey)
}
1 change: 0 additions & 1 deletion android/festago/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@ kotlin.code.style=official
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=true
4 changes: 2 additions & 2 deletions android/festago/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Jul 06 17:20:35 KST 2023
#Wed Jun 19 16:55:17 TLT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
6 changes: 5 additions & 1 deletion android/festago/presentation-legacy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ android {
namespace = "com.festago.festago.presentation"
compileSdk = 34

buildFeatures {
buildConfig = true
}

defaultConfig {
minSdk = 28

Expand Down Expand Up @@ -134,5 +138,5 @@ dependencies {
}

fun getSecretKey(propertyKey: String): String {
return gradleLocalProperties(rootDir).getProperty(propertyKey)
return gradleLocalProperties(rootDir, providers).getProperty(propertyKey)
}
6 changes: 5 additions & 1 deletion android/festago/presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ android {
namespace = "com.festago.festago.presentation"
compileSdk = 34

buildFeatures {
buildConfig = true
}

defaultConfig {
minSdk = 28

Expand Down Expand Up @@ -145,5 +149,5 @@ dependencies {
}

fun getSecretKey(propertyKey: String): String {
return gradleLocalProperties(rootDir).getProperty(propertyKey)
return gradleLocalProperties(rootDir, providers).getProperty(propertyKey)
}

0 comments on commit d77d9f0

Please sign in to comment.