Skip to content

Commit 00e2c03

Browse files
New release: v1.1.14 (#154)
1 parent 67d7750 commit 00e2c03

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android {
2020
applicationId = "com.mubarak.mbcompass"
2121
minSdk = 23
2222
targetSdk = 36
23-
versionCode = 14
24-
versionName = "1.1.13"
23+
versionCode = 15
24+
versionName = "1.1.14"
2525

2626
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2727
vectorDrawables {
@@ -119,7 +119,7 @@ dependencies {
119119
testImplementation(libs.junit)
120120

121121
// Coroutine Test
122-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2")
122+
testImplementation(libs.kotlinx.coroutines.test)
123123

124124
// Instrumentation Test
125125
androidTestImplementation(libs.androidx.junit)

app/src/main/java/com/mubarak/mbcompass/utils/Const.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ object Const {
2222
const val APP_PAGE = "https://github.com/CompassMB/MBCompass"
2323
const val LICENSE_PAGE = "https://www.gnu.org/licenses/gpl-3.0.txt"
2424
const val SUPPORT_PAGE = "https://compassmb.github.io/MBCompass-site/donate.html"
25-
const val AUTHOR_EMAIL = "dev.mubarakbasha@proton.me"
25+
const val AUTHOR_EMAIL = "dev.mubarakbasha@gmail.com"
2626
}
2727

2828

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- Fix distance not updating after pause/resume from notification
2+
- Fix UI issues with top app bar and notifications
3+
- Improve tracking reliability and stability
4+
- Redesign track details with elevation chart and M3 cards

gradle/libs.versions.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ junit = "4.13.2"
1111
hiltNavigationCompose = "1.3.0"
1212
junitVersion = "1.3.0"
1313
espressoCore = "3.7.0"
14+
kotlinxCoroutinesTest = "1.10.2"
1415
lifecycleRuntimeKtx = "2.10.0"
1516
activityCompose = "1.12.2"
1617
composeBom = "2026.02.01"
@@ -19,7 +20,6 @@ kspVersion = "2.3.2"
1920
kotlinxSerializationJson = "1.9.0"
2021
osmdroidAndroid = "6.1.20"
2122
uiViewbinding = "1.10.0"
22-
coordinatorlayout = "1.3.0"
2323

2424
[libraries]
2525
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "activityCompose" }
@@ -34,6 +34,7 @@ junit = { group = "junit", name = "junit", version.ref = "junit" }
3434
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
3535
androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
3636
androidx-hilt-navigation-compose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hiltNavigationCompose" }
37+
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutinesTest" }
3738
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" }
3839
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
3940
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
@@ -48,6 +49,7 @@ androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit
4849
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
4950
androidx-ui-viewbinding = { group = "androidx.compose.ui", name = "ui-viewbinding", version.ref = "uiViewbinding" }
5051
osmdroid-android = { module = "org.osmdroid:osmdroid-android", version.ref = "osmdroidAndroid" }
52+
5153
[plugins]
5254
android-application = { id = "com.android.application", version.ref = "agp" }
5355
kotlinSymbolProcessing ={ id = "com.google.devtools.ksp", version.ref = "kspVersion"}

0 commit comments

Comments
 (0)