Fixed build.gradle.kts lint warning
Renamed settings.gradle to settings.gradele.kts New version 68.1.1
This commit is contained in:
@ -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")
|
||||||
}
|
}
|
||||||
|
|||||||
4
fastlane/metadata/android/en-US/changelogs/68.1.1.txt
Normal file
4
fastlane/metadata/android/en-US/changelogs/68.1.1.txt
Normal 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
|
||||||
@ -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
5
settings.gradle.kts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
plugins {
|
||||||
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
include (":app")
|
||||||
Reference in New Issue
Block a user