Skip to content
Merged

api36 #826

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
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Package name: `info.appdev.charting`
## Tech stack

- **Language**: 100% Kotlin — no Java source files
- **Android**: minSdk 23, compileSdk 35
- **Android**: minSdk 23, compileSdk 36
- **JVM target**: 17
- **Kotlin**: 2.4.0
- **Build**: Gradle with Kotlin DSL (`.gradle.kts` files only)
Expand Down
4 changes: 2 additions & 2 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 = 35
targetSdk = 35
compileSdk = 36
targetSdk = 36
versionCode = getGitCommitCount()
versionName = getVersionText()
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion 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 = 35
compileSdk = 36

// VERSION_NAME no longer available as of 4.1
// https://issuetracker.google.com/issues/158695880
Expand Down
2 changes: 1 addition & 1 deletion 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 = 35
compileSdk = 36

// VERSION_NAME no longer available as of 4.1
// https://issuetracker.google.com/issues/158695880
Expand Down
Loading