New version 64.1.0

This commit is contained in:
Juha Heinanen
2025-04-05 10:31:05 +03:00
parent 2abaefbaec
commit b249755941
3 changed files with 5 additions and 38 deletions

View File

@ -11,8 +11,8 @@ android {
applicationId = "com.tutpro.baresip" applicationId = "com.tutpro.baresip"
minSdk = 28 minSdk = 28
targetSdk = 35 targetSdk = 35
versionCode = 417 versionCode = 418
versionName = "64.0.0" versionName = "64.1.0"
externalNativeBuild { externalNativeBuild {
cmake { cmake {
cFlags += "-DHAVE_INTTYPES_H -lstdc++" cFlags += "-DHAVE_INTTYPES_H -lstdc++"
@ -68,33 +68,19 @@ android {
composeCompiler { composeCompiler {
reportsDestination = layout.buildDirectory.dir("compose_compiler") reportsDestination = layout.buildDirectory.dir("compose_compiler")
// stabilityConfigurationFile = rootProject.layout.projectDirectory.file("stability_config.conf")
} }
dependencies { dependencies {
implementation(libs.androidx.foundation.android) implementation(libs.androidx.foundation.android)
implementation(libs.androidx.tools.core)
implementation(libs.androidx.runtime.livedata) implementation(libs.androidx.runtime.livedata)
implementation(libs.androidx.ui.test.android)
implementation(libs.androidx.foundation.android)
implementation(libs.androidx.compose.material3) implementation(libs.androidx.compose.material3)
val composeBom = libs.androidx.compose.bom implementation(platform(libs.androidx.compose.bom))
implementation(composeBom)
androidTestImplementation(composeBom)
implementation(libs.androidx.ui.tooling.preview)
implementation(libs.androidx.activity.compose) implementation(libs.androidx.activity.compose)
implementation(libs.androidx.lifecycle.viewmodel.compose)
implementation(libs.androidx.foundation) implementation(libs.androidx.foundation)
implementation(libs.androidx.ui) implementation(libs.androidx.ui)
implementation(libs.androidx.appcompat)
implementation(libs.androidx.constraintlayout)
implementation(libs.kotlin.stdlib.jdk8) implementation(libs.kotlin.stdlib.jdk8)
implementation(libs.material) implementation(libs.material)
implementation(libs.androidx.cardview)
implementation(libs.androidx.localbroadcastmanager) implementation(libs.androidx.localbroadcastmanager)
implementation(libs.androidx.swiperefreshlayout)
implementation(libs.androidx.preference.ktx) implementation(libs.androidx.preference.ktx)
implementation(libs.androidx.exifinterface) implementation(libs.androidx.exifinterface)
implementation(libs.androidx.core.ktx) implementation(libs.androidx.core.ktx)
@ -104,8 +90,4 @@ dependencies {
implementation(libs.androidx.fragment.ktx) implementation(libs.androidx.fragment.ktx)
implementation(libs.androidx.media) implementation(libs.androidx.media)
implementation(libs.coil.compose) implementation(libs.coil.compose)
implementation(libs.ui.tooling.preview)
debugImplementation(libs.ui.tooling)
} }

View File

@ -0,0 +1,2 @@
- Several user interface related fixes and improvements
- New translations (Portuguese (Brazil))

View File

@ -1,10 +1,7 @@
[versions] [versions]
activityCompose = "1.10.1" activityCompose = "1.10.1"
appcompat = "1.7.0"
cardview = "1.0.0"
coilCompose = "2.5.0" coilCompose = "2.5.0"
composeBom = "2025.03.01" composeBom = "2025.03.01"
constraintlayout = "2.2.1"
coreKtx = "1.15.0" coreKtx = "1.15.0"
exifinterface = "1.4.0" exifinterface = "1.4.0"
foundation = "1.7.8" foundation = "1.7.8"
@ -14,50 +11,36 @@ kotlin = "2.1.20"
kotlinStdlibJdk8 = "2.1.20" kotlinStdlibJdk8 = "2.1.20"
kotlinxCoroutinesAndroid = "1.9.0" kotlinxCoroutinesAndroid = "1.9.0"
lifecycleExtensions = "2.2.0" lifecycleExtensions = "2.2.0"
lifecycleViewmodelCompose = "2.8.7"
localbroadcastmanager = "1.1.0" localbroadcastmanager = "1.1.0"
material = "1.12.0" material = "1.12.0"
media = "1.7.0" media = "1.7.0"
preferenceKtx = "1.2.1" preferenceKtx = "1.2.1"
swiperefreshlayout = "1.1.0"
ui = "1.8.0-rc02" ui = "1.8.0-rc02"
foundationAndroid = "1.7.8" foundationAndroid = "1.7.8"
toolsCore = "1.0.0-alpha13"
runtimeLivedata = "1.7.8" runtimeLivedata = "1.7.8"
uiTestAndroid = "1.7.8"
composeMaterial3 = "1.3.1" composeMaterial3 = "1.3.1"
[libraries] [libraries]
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" } androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" }
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "activityCompose" } androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "activityCompose" }
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
androidx-cardview = { module = "androidx.cardview:cardview", version.ref = "cardview" }
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "composeBom" } androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "composeBom" }
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" }
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" } androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" }
androidx-exifinterface = { module = "androidx.exifinterface:exifinterface", version.ref = "exifinterface" } androidx-exifinterface = { module = "androidx.exifinterface:exifinterface", version.ref = "exifinterface" }
androidx-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "foundation" } androidx-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "foundation" }
androidx-fragment-ktx = { module = "androidx.fragment:fragment-ktx", version.ref = "fragmentKtx" } androidx-fragment-ktx = { module = "androidx.fragment:fragment-ktx", version.ref = "fragmentKtx" }
androidx-lifecycle-extensions = { module = "androidx.lifecycle:lifecycle-extensions", version.ref = "lifecycleExtensions" } androidx-lifecycle-extensions = { module = "androidx.lifecycle:lifecycle-extensions", version.ref = "lifecycleExtensions" }
androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycleViewmodelCompose" }
androidx-localbroadcastmanager = { module = "androidx.localbroadcastmanager:localbroadcastmanager", version.ref = "localbroadcastmanager" } androidx-localbroadcastmanager = { module = "androidx.localbroadcastmanager:localbroadcastmanager", version.ref = "localbroadcastmanager" }
androidx-media = { module = "androidx.media:media", version.ref = "media" } androidx-media = { module = "androidx.media:media", version.ref = "media" }
androidx-preference-ktx = { module = "androidx.preference:preference-ktx", version.ref = "preferenceKtx" } androidx-preference-ktx = { module = "androidx.preference:preference-ktx", version.ref = "preferenceKtx" }
androidx-swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version.ref = "swiperefreshlayout" }
androidx-ui = { module = "androidx.compose.ui:ui", version.ref = "ui" } androidx-ui = { module = "androidx.compose.ui:ui", version.ref = "ui" }
androidx-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coilCompose" } coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coilCompose" }
gradle = { module = "com.android.tools.build:gradle", version.ref = "gradleVersion" } gradle = { module = "com.android.tools.build:gradle", version.ref = "gradleVersion" }
kotlin-stdlib-jdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlinStdlibJdk8" } kotlin-stdlib-jdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlinStdlibJdk8" }
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinxCoroutinesAndroid" } kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinxCoroutinesAndroid" }
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
material = { module = "com.google.android.material:material", version.ref = "material" } material = { module = "com.google.android.material:material", version.ref = "material" }
ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
androidx-foundation-android = { group = "androidx.compose.foundation", name = "foundation-android", version.ref = "foundationAndroid" } androidx-foundation-android = { group = "androidx.compose.foundation", name = "foundation-android", version.ref = "foundationAndroid" }
androidx-tools-core = { group = "androidx.privacysandbox.tools", name = "tools-core", version.ref = "toolsCore" }
androidx-runtime-livedata = { group = "androidx.compose.runtime", name = "runtime-livedata", version.ref = "runtimeLivedata" } androidx-runtime-livedata = { group = "androidx.compose.runtime", name = "runtime-livedata", version.ref = "runtimeLivedata" }
androidx-ui-test-android = { group = "androidx.compose.ui", name = "ui-test-android", version.ref = "uiTestAndroid" }
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "composeMaterial3" } androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "composeMaterial3" }
[plugins] [plugins]