From 6102c68ed1f4fb1a3545361934d7b7758a7caf32 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 8 Oct 2024 18:17:46 -0500 Subject: [PATCH] tweaks, increase target java version --- wallet_app/android/app/build.gradle.kts | 6 +++--- .../main/{res => java/com/example/walletapp}/theme/Color.kt | 0 .../main/{res => java/com/example/walletapp}/theme/Theme.kt | 0 .../main/{res => java/com/example/walletapp}/theme/Type.kt | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename wallet_app/android/app/src/main/{res => java/com/example/walletapp}/theme/Color.kt (100%) rename wallet_app/android/app/src/main/{res => java/com/example/walletapp}/theme/Theme.kt (100%) rename wallet_app/android/app/src/main/{res => java/com/example/walletapp}/theme/Type.kt (100%) diff --git a/wallet_app/android/app/build.gradle.kts b/wallet_app/android/app/build.gradle.kts index c955a0f..c5a3805 100644 --- a/wallet_app/android/app/build.gradle.kts +++ b/wallet_app/android/app/build.gradle.kts @@ -46,11 +46,11 @@ android { } } compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "17" } composeOptions { kotlinCompilerExtensionVersion = "1.5.1" diff --git a/wallet_app/android/app/src/main/res/theme/Color.kt b/wallet_app/android/app/src/main/java/com/example/walletapp/theme/Color.kt similarity index 100% rename from wallet_app/android/app/src/main/res/theme/Color.kt rename to wallet_app/android/app/src/main/java/com/example/walletapp/theme/Color.kt diff --git a/wallet_app/android/app/src/main/res/theme/Theme.kt b/wallet_app/android/app/src/main/java/com/example/walletapp/theme/Theme.kt similarity index 100% rename from wallet_app/android/app/src/main/res/theme/Theme.kt rename to wallet_app/android/app/src/main/java/com/example/walletapp/theme/Theme.kt diff --git a/wallet_app/android/app/src/main/res/theme/Type.kt b/wallet_app/android/app/src/main/java/com/example/walletapp/theme/Type.kt similarity index 100% rename from wallet_app/android/app/src/main/res/theme/Type.kt rename to wallet_app/android/app/src/main/java/com/example/walletapp/theme/Type.kt