Skip to content

Commit

Permalink
Upgrade Kotlin, gradle and compose compiler versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rkareko committed Apr 24, 2024
1 parent b0f6980 commit 5a1bc73
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.android.tools.build:gradle:7.1.3"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
classpath "com.android.tools.build:gradle:8.3.1"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22'
classpath "org.jetbrains.kotlin:kotlin-serialization:1.7.10"
classpath deps.kotlin_coveralls_plugin
classpath deps.spotless
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 @@
#Wed Nov 02 07:33:43 EAT 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
4 changes: 3 additions & 1 deletion p2p-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jacoco {
android {
compileSdk 34

namespace = "org.smartregister.p2p"

defaultConfig {
minSdk 21
targetSdk 30
Expand Down Expand Up @@ -53,7 +55,7 @@ android {
viewBinding true
}
composeOptions {
kotlinCompilerExtensionVersion '1.3.0'
kotlinCompilerExtensionVersion '1.5.8'
}
testOptions {
animationsDisabled true
Expand Down
1 change: 1 addition & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {

android {
compileSdk 34
namespace = "org.smartregister.p2p.sample"

defaultConfig {
applicationId "org.smartregister.p2p.sample"
Expand Down

0 comments on commit 5a1bc73

Please sign in to comment.