Skip to content

Commit

Permalink
Release 2023.11
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Novikov <[email protected]>
  • Loading branch information
andreynovikov committed Dec 12, 2023
1 parent 7a20cdf commit 2637ac1
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 16 deletions.
34 changes: 18 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ apply plugin: 'com.android.application'

android {
namespace 'mobi.maptrek'
compileSdkVersion 32
buildToolsVersion '33.0.1'

ndkVersion '25.1.8937393'

defaultConfig {
applicationId "mobi.maptrek"
minSdkVersion 23
targetSdkVersion 31
versionCode 85
versionName "2022.05"
targetSdkVersion 33
compileSdk 34
versionCode 86
versionName "2023.11"
testInstrumentationRunner = 'androidx.test.runner.AndroidJUnitRunner'
buildConfigField "java.util.concurrent.atomic.AtomicBoolean", "IS_TESTING", "new java.util.concurrent.atomic.AtomicBoolean(false)"
}
Expand All @@ -26,7 +26,7 @@ android {
}

androidResources {
additionalParameters "--keep-raw-values"
additionalParameters = ["--keep-raw-values"]
}


Expand All @@ -37,8 +37,6 @@ android {
}
}

flavorDimensions "tier", "region"

externalNativeBuild {
ndkBuild {
path 'Android.mk'
Expand All @@ -54,6 +52,9 @@ android {
abortOnError false
checkReleaseBuilds true
}
buildFeatures {
aidl true
}
}

repositories {
Expand All @@ -62,7 +63,7 @@ repositories {
}

configurations {
all {
configureEach {
// https://stackoverflow.com/questions/69817925/problem-duplicate-class-androidx-lifecycle-viewmodel-found-in-modules
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
}
Expand All @@ -75,17 +76,18 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test:rules:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation "androidx.preference:preference:1.2.0"
implementation "androidx.work:work-runtime:2.7.1"
implementation 'androidx.core:core-splashscreen:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation "androidx.preference:preference:1.2.1"
implementation "androidx.work:work-runtime:2.8.1"
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'androidx.annotation:annotation:1.5.0'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.annotation:annotation:1.7.0'
implementation 'com.google.android.material:material:1.10.0'
implementation 'com.github.andreynovikov:androidcolorpicker:v0.0.3'
implementation 'com.github.andreynovikov:Geo-Coordinate-Conversion-Java:v1.0.0'
implementation 'com.caverock:androidsvg:1.4'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:slf4j-api:2.0.9'
implementation 'org.slf4j:slf4j-jdk14:2.0.9'
implementation 'com.noveogroup.android:android-logger:1.3.6'
implementation 'org.greenrobot:eventbus:3.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.8.1'
Expand Down
7 changes: 7 additions & 0 deletions app/src/main/res/xml-ru/changelog.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="2023.11" versioncode="85" date="11.11.2023">
<change>Добавлена поддержка GPX маршрутов</change>
<change>Добавлена базовая поддержка навигации по маршруту</change>
<change>Прекращена поддержка Lite версии</change>
<change>Исправлено отображение приборов</change>
<change>Исправлено открытие местоположения из других приложений</change>
</release>
<release version="2022.05" versioncode="84" date="01.05.2022">
<change>Исправлена загрузка карт на Android 12</change>
<change variant="full">Исправлена обработка пользовательских карт при вращении устройства</change>
Expand Down
7 changes: 7 additions & 0 deletions app/src/main/res/xml/changelog.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="2023.11" versioncode="85" date="11.11.2023">
<change>Added support for GPX routes</change>
<change>Added basic support for route navigation</change>
<change>Discontinued Lite version</change>
<change>Fixed gauge layout</change>
<change>Fixed opening locations from other apps</change>
</release>
<release version="2022.05" versioncode="84" date="01.05.2022">
<change>Fixed maps download on Android 12</change>
<change variant="full">Fixed custom maps processing on device rotation</change>
Expand Down

0 comments on commit 2637ac1

Please sign in to comment.