Skip to content

Commit e9c1f92

Browse files
committed
Decrease to api 35
1 parent 8a63a31 commit e9c1f92

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
defaultConfig {
1313
applicationId = "info.appdev.chartexample"
1414
minSdk = 23
15-
compileSdk = 36
16-
targetSdk = 36
15+
compileSdk = 35
16+
targetSdk = 35
1717
versionCode = getGitCommitCount()
1818
versionName = getVersionText()
1919
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@@ -77,7 +77,7 @@ dependencies {
7777
implementation("androidx.compose.material3:material3")
7878
implementation("androidx.compose.ui:ui")
7979
implementation("androidx.compose.ui:ui-tooling-preview")
80-
implementation("androidx.activity:activity-compose:1.13.0")
80+
implementation("androidx.activity:activity-compose:1.10.1")
8181
implementation("androidx.compose.material:material-icons-extended")
8282
implementation("com.github.AppDevNext.Logcat:LogcatCoreLib:3.4")
8383
debugImplementation("androidx.compose.ui:ui-tooling")

chartLib/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
namespace = "info.appdev.charting"
1313
defaultConfig {
1414
minSdk = 23
15-
compileSdk = 36
15+
compileSdk = 35
1616

1717
// VERSION_NAME no longer available as of 4.1
1818
// https://issuetracker.google.com/issues/158695880
@@ -54,8 +54,8 @@ dependencies {
5454
lintPublish(project(path = ":lint", configuration = "lintJar")) // embeds in published AAR
5555

5656
implementation("androidx.annotation:annotation:1.10.0")
57-
implementation("androidx.core:core:1.18.0")
58-
implementation("androidx.activity:activity-ktx:1.13.0")
57+
implementation("androidx.core:core:1.16.0")
58+
implementation("androidx.activity:activity-ktx:1.10.1")
5959
implementation("com.github.AppDevNext.Logcat:LogcatCoreLib:3.4")
6060
testImplementation("junit:junit:4.13.2")
6161
testImplementation("org.mockito:mockito-core:5.23.0")

chartLibCompose/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ android {
1313
namespace = "info.appdev.charting.compose"
1414
defaultConfig {
1515
minSdk = 23
16-
compileSdk = 36
16+
compileSdk = 35
1717

1818
// VERSION_NAME no longer available as of 4.1
1919
// https://issuetracker.google.com/issues/158695880
@@ -53,8 +53,8 @@ android {
5353

5454
dependencies {
5555
implementation("androidx.annotation:annotation:1.10.0")
56-
implementation("androidx.core:core:1.18.0")
57-
implementation("androidx.activity:activity-ktx:1.13.0")
56+
implementation("androidx.core:core:1.16.0")
57+
implementation("androidx.activity:activity-ktx:1.10.1")
5858
implementation("com.github.AppDevNext.Logcat:LogcatCoreLib:3.4")
5959
api(project(":chartLib"))
6060

0 commit comments

Comments
 (0)