Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed BannerMBCompass.png
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId = "com.mubarak.mbcompass"
minSdk = 21
targetSdk = 36
versionCode = 11
versionName = "1.1.10"
versionCode = 12
versionName = "1.1.11"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ fun SettingsScreen(
IconButton(onClick = onBackClicked) {
Icon(
imageVector = Icons.AutoMirrored.Filled.ArrowBack,
contentDescription = "Localized description"
contentDescription = stringResource(R.string.nav_back)
)
}
})
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/java/com/mubarak/mbcompass/utils/Calculator.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.mubarak.mbcompass.utils;

public class Calculator {

public static int calculateAdd(int a,int b){
return a + b;
}
}
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Implemented an intuitive settings screen with color scheme.
- Fixed significant performant issue on Compass Rose due to unnecessary re-execution.
- Added feature flag in the manifest.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ junit = "4.13.2"
hiltNavigationCompose = "1.2.0"
junitVersion = "1.3.0"
espressoCore = "3.7.0"
lifecycleRuntimeKtx = "2.9.2"
lifecycleRuntimeKtx = "2.9.3"
activityCompose = "1.10.1"
composeBom = "2025.07.00"
navigationCompose = "2.9.3"
navigationCompose = "2.9.2"
kspVersion = "2.2.0-2.0.2"
kotlinxSerializationJson = "1.9.0"
osmdroidAndroid = "6.1.20"
Expand Down