Skip to content

Commit 101f493

Browse files
committed
Mapbox and AndroidX Constraint Layout updated; fixed typo in README
1 parent 6fc072f commit 101f493

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ An alternative to [Mapbox offline plugin](https://github.com/mapbox/mapbox-plugi
55

66
This plugin is published to [Bintray's JCenter](https://bintray.com/bintray/jcenter). Include it in your `build.gradle` file with
77
```gradle
8-
implementation 'dev.micheleferretti:mapbox-plugin-offline:2.2.2'
8+
implementation 'dev.micheleferretti:mapbox-plugin-offline:2.2.3'
99
```
1010

1111
## Usage
@@ -29,7 +29,7 @@ val notificationOptions = NotificationOptions(
2929
)
3030
```
3131

32-
Then, togheter with an [OfflineRegionDefinition](https://docs.mapbox.com/android/maps/overview/offline/#defining-a-region) and an optional [metadata](https://docs.mapbox.com/android/maps/overview/offline/#metadata) `ByteArray`, use it to create an `OfflineDownloadOptions`
32+
Then, together with an [OfflineRegionDefinition](https://docs.mapbox.com/android/maps/overview/offline/#defining-a-region) and an optional [metadata](https://docs.mapbox.com/android/maps/overview/offline/#metadata) `ByteArray`, use it to create an `OfflineDownloadOptions`
3333

3434
```kotlin
3535
val offlineDownloadOptions = OfflineDownloadOptions(

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131

3232
// AndroidX
3333
implementation 'androidx.appcompat:appcompat:1.2.0'
34-
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
34+
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
3535
implementation "androidx.core:core-ktx:$androidx_core_version"
3636
implementation 'androidx.recyclerview:recyclerview:1.1.0'
3737

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
androidx_test_junit_version = '1.1.2'
77
junit_version = '4.12'
88
kotlin_version = '1.4.10'
9-
mapbox_version = '9.5.1'
9+
mapbox_version = '9.6.0'
1010

1111
File secretPropsFile = file('secret.properties')
1212
Properties secretProps = new Properties()

mapboxpluginoffline/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ android {
1616
minSdkVersion 14
1717
targetSdkVersion 30
1818
versionCode 1
19-
versionName '2.2.2'
19+
versionName '2.2.3'
2020
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2121
archivesBaseName = "$archivesBaseName-$versionName"
2222
}

0 commit comments

Comments
 (0)