Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
applicationId = "info.appdev.chartexample"
minSdk = 23
compileSdk = 36
targetSdk = 36
compileSdk = 35
targetSdk = 35
versionCode = getGitCommitCount()
versionName = getVersionText()
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -77,7 +77,7 @@ dependencies {
implementation("androidx.compose.material3:material3")
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.activity:activity-compose:1.13.0")
implementation("androidx.activity:activity-compose:1.10.1")
implementation("androidx.compose.material:material-icons-extended")
implementation("com.github.AppDevNext.Logcat:LogcatCoreLib:3.4")
debugImplementation("androidx.compose.ui:ui-tooling")
Expand Down
6 changes: 3 additions & 3 deletions chartLib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
namespace = "info.appdev.charting"
defaultConfig {
minSdk = 23
compileSdk = 36
compileSdk = 35

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

implementation("androidx.annotation:annotation:1.10.0")
implementation("androidx.core:core:1.18.0")
implementation("androidx.activity:activity-ktx:1.13.0")
implementation("androidx.core:core:1.16.0")
implementation("androidx.activity:activity-ktx:1.10.1")
implementation("com.github.AppDevNext.Logcat:LogcatCoreLib:3.4")
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.23.0")
Expand Down
6 changes: 3 additions & 3 deletions chartLibCompose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
namespace = "info.appdev.charting.compose"
defaultConfig {
minSdk = 23
compileSdk = 36
compileSdk = 35

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

dependencies {
implementation("androidx.annotation:annotation:1.10.0")
implementation("androidx.core:core:1.18.0")
implementation("androidx.activity:activity-ktx:1.13.0")
implementation("androidx.core:core:1.16.0")
implementation("androidx.activity:activity-ktx:1.10.1")
implementation("com.github.AppDevNext.Logcat:LogcatCoreLib:3.4")
api(project(":chartLib"))

Expand Down
Loading