Skip to content

Commit e615e30

Browse files
Release v1.1.11 (#99)
2 parents 169e0b7 + 216339f commit e615e30

6 files changed

Lines changed: 16 additions & 5 deletions

File tree

BannerMBCompass.png

-253 KB
Binary file not shown.

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ android {
1919
applicationId = "com.mubarak.mbcompass"
2020
minSdk = 21
2121
targetSdk = 36
22-
versionCode = 11
23-
versionName = "1.1.10"
22+
versionCode = 12
23+
versionName = "1.1.11"
2424

2525
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2626
vectorDrawables {

app/src/main/java/com/mubarak/mbcompass/ui/settings/SettingsScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ fun SettingsScreen(
124124
IconButton(onClick = onBackClicked) {
125125
Icon(
126126
imageVector = Icons.AutoMirrored.Filled.ArrowBack,
127-
contentDescription = "Localized description"
127+
contentDescription = stringResource(R.string.nav_back)
128128
)
129129
}
130130
})
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.mubarak.mbcompass.utils;
2+
3+
public class Calculator {
4+
5+
public static int calculateAdd(int a,int b){
6+
return a + b;
7+
}
8+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Implemented an intuitive settings screen with color scheme.
2+
- Fixed significant performant issue on Compass Rose due to unnecessary re-execution.
3+
- Added feature flag in the manifest.

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ junit = "4.13.2"
1111
hiltNavigationCompose = "1.2.0"
1212
junitVersion = "1.3.0"
1313
espressoCore = "3.7.0"
14-
lifecycleRuntimeKtx = "2.9.2"
14+
lifecycleRuntimeKtx = "2.9.3"
1515
activityCompose = "1.10.1"
1616
composeBom = "2025.07.00"
17-
navigationCompose = "2.9.3"
17+
navigationCompose = "2.9.2"
1818
kspVersion = "2.2.0-2.0.2"
1919
kotlinxSerializationJson = "1.9.0"
2020
osmdroidAndroid = "6.1.20"

0 commit comments

Comments
 (0)