From 52706de41a212cad73d9c52e88dcfee622978934 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Sat, 9 Aug 2025 13:54:48 +0300 Subject: [PATCH] Fixed build.gradle.kts lint warning Renamed settings.gradle to settings.gradele.kts New version 68.1.1 --- app/build.gradle.kts | 9 +++++---- fastlane/metadata/android/en-US/changelogs/68.1.1.txt | 4 ++++ settings.gradle | 11 ----------- settings.gradle.kts | 5 +++++ 4 files changed, 14 insertions(+), 15 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/68.1.1.txt delete mode 100644 settings.gradle create mode 100644 settings.gradle.kts diff --git a/app/build.gradle.kts b/app/build.gradle.kts index b287f63d..be2a30a2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -12,7 +12,7 @@ android { minSdk = 28 targetSdk = 36 versionCode = 444 - versionName = "68.1.0" + versionName = "68.1.1" externalNativeBuild { cmake { cFlags += "-DHAVE_INTTYPES_H -lstdc++" @@ -30,9 +30,6 @@ android { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } - kotlinOptions { - jvmTarget = "17" - } composeOptions { kotlinCompilerExtensionVersion = "1.5.7" } @@ -72,6 +69,10 @@ android { namespace = "com.tutpro.baresip" } +kotlin { + jvmToolchain(17) +} + composeCompiler { reportsDestination = layout.buildDirectory.dir("compose_compiler") } diff --git a/fastlane/metadata/android/en-US/changelogs/68.1.1.txt b/fastlane/metadata/android/en-US/changelogs/68.1.1.txt new file mode 100644 index 00000000..65c997b5 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/68.1.1.txt @@ -0,0 +1,4 @@ +- Improved display of call history time +- Changed background color of colorblind status icons +- Fixed possible crash related to Registration interval account setting +- Fixed update of status notification diff --git a/settings.gradle b/settings.gradle deleted file mode 100644 index 29530478..00000000 --- a/settings.gradle +++ /dev/null @@ -1,11 +0,0 @@ -include ':app' - -// The following is just for generating libs only. -// To use: -// uncomment out this line -// make sure uncomment out the one inside app/build.gradle to enable dependency -// build the app in Android Studio or command line -// Comment out this line and the one inside app/build.gradle again - -// include ':gen-libs' - diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 00000000..21dd416b --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,5 @@ +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" +} + +include (":app")