Skip to content

Commit

Permalink
update gradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth Agarwal committed Mar 21, 2024
1 parent 953fe85 commit 71e090e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Internal

- Bump AGP to v8.3.0
- Bump AGP to v8.3.1

## 2024-01-08-8979

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompileTool
import org.simple.rmg.RoomMetadataGenerator
import java.util.Locale

plugins {
id("com.android.application")
Expand Down Expand Up @@ -164,6 +163,7 @@ android {
buildFeatures {
viewBinding = true
compose = true
buildConfig = true
}

composeOptions {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ defaultProguardFile=proguard-android-optimize.txt
# Android-specific flags
android.useAndroidX=true
android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
android.suppressUnsupportedCompileSdk=34
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dagger = "2.48.1"

flipper = "0.176.0"

kotlin = "1.9.10"
kotlin = "1.9.23"

ktlint = "0.36.0"

Expand All @@ -33,19 +33,19 @@ rx-binding = "3.1.0"

coroutines = "1.6.4"

compose-compiler = "1.5.3"
compose-compiler = "1.5.11"

androidx-compose-bom = "2023.07.00-alpha02"

composeThemeAdapter = "0.31.3-beta"

ksp = "1.9.10-1.0.13"
ksp = "1.9.23-1.0.19"

sqlCipher = "4.5.4"

[libraries]
android-gradle-plugin = "com.android.tools.build:gradle:8.3.0"
android-desugaring = "com.android.tools:desugar_jdk_libs:1.2.3"
android-desugaring = "com.android.tools:desugar_jdk_libs:2.0.4"
android-gradle-plugin = "com.android.tools.build:gradle:8.3.1"

androidx-annotation-annotation = "androidx.annotation:annotation:1.5.0"

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 3 additions & 0 deletions mobius-base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

isCoreLibraryDesugaringEnabled = true
}

kotlinOptions {
Expand All @@ -40,6 +42,7 @@ android {
}

dependencies {
coreLibraryDesugaring(libs.android.desugaring)
api(libs.bundles.mobius)

implementation(libs.kotlin.stdlib)
Expand Down

0 comments on commit 71e090e

Please sign in to comment.