Skip to content

Commit

Permalink
dev commit
Browse files Browse the repository at this point in the history
- Upgraded gradle plugin to 8.6.0.
- Upgraded target and compile SDK to Android 15 (API Level 35).
- Updated all internal dependencies.
  • Loading branch information
BharathVishal committed Sep 17, 2024
1 parent e759ed6 commit a9a1c80
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 18 deletions.
11 changes: 11 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ plugins {

android {
namespace = "com.bharathvishal.messagecommunicationusingwearabledatalayer"
compileSdk = 34
compileSdk = 35
defaultConfig {
applicationId = "com.bharathvishal.messagecommunicationusingwearabledatalayer"
vectorDrawables {
useSupportLibrary = true
}
minSdk = 23
targetSdk = 34
versionCode = 100
versionName = "3.7"
targetSdk = 35
versionCode = 101
versionName = "3.8"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
Expand Down Expand Up @@ -50,7 +50,7 @@ android {
jvmTarget = "17"
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.14"
kotlinCompilerExtensionVersion = "1.5.15"
}

packaging {
Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.5.0"
agp = "8.6.0"
appCompatVer="1.7.0"
kotlinxCoroutinesVer="1.7.3"
coilVer="2.6.0"
Expand All @@ -9,15 +9,15 @@ constraintlayoutVer="2.1.4"
coreKtxVer = "1.13.1"
glideVer="4.16.0"
cardViewVer="1.0.0"
compose3MaterialVer="1.2.1"
lifecycleRuntimeKtxVer="2.8.2"
activityComposeVer="1.9.0"
composeUItestVer="1.6.8"
uitoolingVer="1.6.8"
uitoolingpreviewVer="1.6.8"
compose3MaterialVer="1.3.0"
lifecycleRuntimeKtxVer="2.8.5"
activityComposeVer="1.9.2"
composeUItestVer="1.7.1"
uitoolingVer="1.7.1"
uitoolingpreviewVer="1.7.1"
splashScreenVer="1.0.1"
junitVersion = "4.13.2"
materialiconsVer="1.6.8"
materialiconsVer="1.7.1"
espressoCoreVer = "3.6.1"
accompanistVer = "0.28.0"
legacySupportVer="1.0.0"
Expand Down
10 changes: 5 additions & 5 deletions wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ plugins {

android {
namespace = "com.bharathvishal.messagecommunicationusingwearabledatalayer"
compileSdk = 34
compileSdk = 35
defaultConfig {
applicationId = "com.bharathvishal.messagecommunicationusingwearabledatalayer"
vectorDrawables {
useSupportLibrary = true
}
minSdk = 23
targetSdk = 34
versionCode = 100
versionName = "3.7"
targetSdk = 35
versionCode = 101
versionName = "3.8"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
Expand Down Expand Up @@ -50,7 +50,7 @@ android {
jvmTarget = "17"
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.14"
kotlinCompilerExtensionVersion = "1.5.15"
}

packaging {
Expand Down

0 comments on commit a9a1c80

Please sign in to comment.