Skip to content

Commit f36f967

Browse files
author
sds100
committed
Merge tag 'v1.0.1' into main
2 parents e627022 + b011d3f commit f36f967

17 files changed

Lines changed: 1527 additions & 1017 deletions

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.0.1](https://github.com/mapcode-foundation/mapcode-android-app/releases/tag/v1.0.1)
2+
3+
#### 5 August 2022
4+
5+
- [#38](https://github.com/mapcode-foundation/mapcode-android-app/issues/38) Show error when inputting invalid latitude
6+
and longitude to fix the crash.
7+
- Hide buttons that link to the GitHub repo and changelog until the repo is made public.
8+
19
## [1.0.0](https://github.com/mapcode-foundation/mapcode-android-app/releases/tag/v1.0.0)
210

311
#### 21 July 2022

app/build.gradle

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
minSdk 21
1616
//noinspection OldTargetApi wait for sources to be released before upgrading
1717
targetSdk 32
18-
versionCode 1
19-
versionName "1.0.0"
18+
versionCode 2
19+
versionName "1.0.1"
2020

2121
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2222
vectorDrawables {
@@ -51,7 +51,7 @@ android {
5151
compose true
5252
}
5353
composeOptions {
54-
kotlinCompilerExtensionVersion '1.1.1'
54+
kotlinCompilerExtensionVersion '1.2.0'
5555
}
5656
packagingOptions {
5757
resources {
@@ -63,7 +63,7 @@ android {
6363
dependencies {
6464
//google
6565
implementation 'com.google.maps.android:maps-compose:2.2.0'
66-
implementation 'com.google.android.gms:play-services-maps:18.0.2'
66+
implementation 'com.google.android.gms:play-services-maps:18.1.0'
6767
implementation "com.google.dagger:hilt-android:2.42"
6868
implementation 'androidx.hilt:hilt-navigation-compose:1.0.0'
6969
implementation 'com.google.android.gms:play-services-location:20.0.0'
@@ -72,29 +72,29 @@ dependencies {
7272

7373
//android
7474
implementation 'androidx.core:core-ktx:1.8.0'
75-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0"
76-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0'
77-
implementation 'androidx.activity:activity-compose:1.5.0'
75+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
76+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
77+
implementation 'androidx.activity:activity-compose:1.5.1'
7878
//noinspection GradleDependency
79-
implementation "androidx.compose.ui:ui:$compose_ui_version"
80-
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
81-
implementation 'androidx.compose.material:material:1.1.1'
82-
implementation "androidx.navigation:navigation-compose:2.5.0"
83-
implementation "androidx.compose.foundation:foundation:1.3.0-alpha01"
79+
implementation "androidx.compose.ui:ui:1.2.0"
80+
implementation "androidx.compose.ui:ui-tooling-preview:1.2.0"
81+
implementation 'androidx.compose.material:material:1.2.0'
82+
implementation "androidx.navigation:navigation-compose:2.5.1"
83+
implementation "androidx.compose.foundation:foundation:1.3.0-alpha02"
8484
implementation 'com.google.accompanist:accompanist-permissions:0.24.10-beta'
8585
implementation "com.google.accompanist:accompanist-systemuicontroller:0.17.0"
86-
implementation "com.google.accompanist:accompanist-insets:0.23.1"
8786
implementation "androidx.datastore:datastore-preferences:1.0.0"
88-
implementation "androidx.core:core-splashscreen:1.0.0-rc01"
89-
implementation "androidx.compose.material3:material3-window-size-class:1.0.0-alpha14"
87+
implementation "androidx.core:core-splashscreen:1.0.0"
88+
implementation "androidx.compose.material3:material3-window-size-class:1.0.0-alpha15"
9089

9190
//other
9291
implementation 'com.jakewharton.timber:timber:5.0.1'
9392
//noinspection GradleDependency. Issue with R8 on Android 8.0 or lower
9493
implementation 'com.mapcode:mapcode:2.4.14'
9594

9695
//debug
97-
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
96+
debugImplementation "androidx.compose.ui:ui-tooling:1.2.0"
97+
debugImplementation "androidx.compose.ui:ui-test-manifest:1.2.0"
9898

9999
//testing
100100
testImplementation 'junit:junit:4.13.2'
@@ -104,13 +104,13 @@ dependencies {
104104
testImplementation 'org.mockito:mockito-inline:4.6.1'
105105
testImplementation "androidx.arch.core:core-testing:2.1.0"
106106
testImplementation "androidx.test:core-ktx:1.4.0"
107-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.2'
108-
testImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
107+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.3'
109108

110109
androidTestImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.25'
111110
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
112111
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
113-
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
112+
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.2.0"
114113
androidTestImplementation 'org.mockito.kotlin:mockito-kotlin:4.0.0'
115114
androidTestImplementation 'org.mockito:mockito-android:4.6.1'
115+
androidTestImplementation 'androidx.test:rules:1.4.0'
116116
}

0 commit comments

Comments
 (0)