Skip to content

Commit

Permalink
Updated app to support Android 15
Browse files Browse the repository at this point in the history
  • Loading branch information
XuanHanTan committed Jul 9, 2024
1 parent cf55c16 commit 44c48b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ plugins {

android {
namespace = "com.xuanhan.cellularcompanion"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.xuanhan.cellularcompanion"
minSdk = 26
targetSdk = 34
versionCode = 13
versionName = "1.0.10"
targetSdk = 35
versionCode = 14
versionName = "1.1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/xuanhan/cellularcompanion/About.kt
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ fun About(navigator: DestinationsNavigator) {
) {
Spacer(modifier = Modifier.height(16.dp))
Text(
"v1.0.10",
"v1.1.0",
style = MaterialTheme.typography.displayLarge,
)
Spacer(modifier = Modifier.height(48.dp))
Text("© Xuan Han Tan 2023. All rights reserved.\n\nThis app was developed by Xuan Han Tan. I hope you find it useful! If you want to learn more about me and my other projects, visit my website. If you have any questions, feel free to contact me by email.")
Text("© Xuan Han Tan 2023 - 2024. All rights reserved.\n\nThis app was developed by Xuan Han Tan. I hope you find it useful! If you want to learn more about me and my other projects, visit my website. If you have any questions, feel free to contact me by email.")
Spacer(modifier = Modifier.height(16.dp))
}
ListItem(
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.1" apply false
id("com.android.application") version "8.2.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.10" apply false
}

0 comments on commit 44c48b3

Please sign in to comment.