Fixed build.gradle.kts lint warning

Renamed settings.gradle to settings.gradele.kts
New version 68.1.1
This commit is contained in:
Juha Heinanen
2025-08-09 13:54:48 +03:00
parent c485420f0f
commit 52706de41a
4 changed files with 14 additions and 15 deletions

View File

@ -12,7 +12,7 @@ android {
minSdk = 28 minSdk = 28
targetSdk = 36 targetSdk = 36
versionCode = 444 versionCode = 444
versionName = "68.1.0" versionName = "68.1.1"
externalNativeBuild { externalNativeBuild {
cmake { cmake {
cFlags += "-DHAVE_INTTYPES_H -lstdc++" cFlags += "-DHAVE_INTTYPES_H -lstdc++"
@ -30,9 +30,6 @@ android {
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
kotlinOptions {
jvmTarget = "17"
}
composeOptions { composeOptions {
kotlinCompilerExtensionVersion = "1.5.7" kotlinCompilerExtensionVersion = "1.5.7"
} }
@ -72,6 +69,10 @@ android {
namespace = "com.tutpro.baresip" namespace = "com.tutpro.baresip"
} }
kotlin {
jvmToolchain(17)
}
composeCompiler { composeCompiler {
reportsDestination = layout.buildDirectory.dir("compose_compiler") reportsDestination = layout.buildDirectory.dir("compose_compiler")
} }

View File

@ -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

View File

@ -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'

5
settings.gradle.kts Normal file
View File

@ -0,0 +1,5 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
include (":app")