Skip to content

Commit

Permalink
Update gradle and up version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-paing committed Oct 23, 2024
1 parent 0ee7342 commit ac042ba
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ android {

buildFeatures {
compose = true
buildConfig = true
}
}

Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
val compileSdkVer by extra { 34 }
val targetSdkVer by extra { 34 }
val compileSdkVer by extra { 35 }
val targetSdkVer by extra { 35 }
val minimumSdkVer by extra { 28 }

private val versionMajor = 1
private val versionMinor = 2
private val versionPatch = 1
private val versionMinor = 3
private val versionPatch = 0
private val versionBuild = 0
val versionNameConfig by extra { "$versionMajor.$versionMinor.$versionPatch" }
val versionCodeConfig by extra { versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild * 10 }
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ 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
android.nonFinalResIds=false

roborazzi.contextdata=false
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
android-plugin = "8.4.2"
android-plugin = "8.7.1"
androidx-dataStore = "1.1.1"
androidx-fragment = "1.8.4"
androidx-lifecycle = "2.8.6"
Expand Down Expand Up @@ -97,7 +97,7 @@ dagger-hilt-android-testing = { group = "com.google.dagger", name = "hilt-androi
dagger-hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "dagger" }
desugar_jdk_libs = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugar-jdk-libs" }
firebase-analytics = { group = "com.google.firebase", name = "firebase-analytics-ktx" }
firebase-bom = "com.google.firebase:firebase-bom:33.4.0"
firebase-bom = "com.google.firebase:firebase-bom:33.5.0"
firebase-crashlytics = { group = "com.google.firebase", name = "firebase-crashlytics-ktx" }
junit-junit4 = { module = "junit:junit", version = "4.13.2" }
junit-junit5-bom = { module = "org.junit:junit-bom", version.ref = "junit5" }
Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Wed Oct 23 15:05:43 ICT 2024
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
1 change: 1 addition & 0 deletions wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ android {
buildFeatures {
viewBinding = true
compose = true
buildConfig = true
}
}
signingConfigs {
Expand Down

0 comments on commit ac042ba

Please sign in to comment.