Skip to content

Commit 6fc072f

Browse files
committed
.gitignore updated; Android Gradle Plugin, AndroidX Core, AndroidX Constraint Layout and Mapbox updated
1 parent ca2360f commit 6fc072f

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

.gitignore

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1+
captures/
12
*.iml
3+
.idea
4+
.externalNativeBuild
25
.gradle
6+
build/
37
/local.properties
48
/secret.properties
5-
/.idea/caches
6-
/.idea/dictionaries
7-
/.idea/libraries
8-
/.idea/modules.xml
9-
/.idea/workspace.xml
10-
/.idea/navEditor.xml
11-
/.idea/assetWizardSettings.xml
12-
.DS_Store
13-
/build
14-
/captures
15-
.externalNativeBuild
9+
.DS_Store

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
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.1'
8+
implementation 'dev.micheleferretti:mapbox-plugin-offline:2.2.2'
99
```
1010

1111
## Usage

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44

55
android {
6-
compileSdkVersion 29
6+
compileSdkVersion 30
77
defaultConfig {
88
applicationId "dev.micheleferretti.mapboxpluginofflinedemo"
99
minSdkVersion 14
10-
targetSdkVersion 29
10+
targetSdkVersion 30
1111
versionCode 1
1212
versionName "1.0"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -31,7 +31,7 @@ dependencies {
3131

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

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
22
ext {
3-
androidx_core_version = '1.3.1'
3+
androidx_core_version = '1.3.2'
44
androidx_test_runner_version = '1.3.0'
55
androidx_test_espresso_version = '3.3.0'
66
androidx_test_junit_version = '1.1.2'
77
junit_version = '4.12'
88
kotlin_version = '1.4.10'
9-
mapbox_version = '9.5.0'
9+
mapbox_version = '9.5.1'
1010

1111
File secretPropsFile = file('secret.properties')
1212
Properties secretProps = new Properties()
@@ -22,7 +22,7 @@ buildscript {
2222
jcenter()
2323
}
2424
dependencies {
25-
classpath 'com.android.tools.build:gradle:4.0.1'
25+
classpath 'com.android.tools.build:gradle:4.1.0'
2626
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
2727
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:0.10.1'
2828
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Jun 11 11:00:27 CEST 2020
1+
#Thu Oct 22 23:41:53 CEST 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

mapboxpluginoffline/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ String libGithubRepo = 'xit0c/mapbox-plugin-offline'
1111
String libUrl = "https://github.com/$libGithubRepo"
1212

1313
android {
14-
compileSdkVersion 29
14+
compileSdkVersion 30
1515
defaultConfig {
1616
minSdkVersion 14
17-
targetSdkVersion 29
17+
targetSdkVersion 30
1818
versionCode 1
19-
versionName '2.2.1'
19+
versionName '2.2.2'
2020
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2121
archivesBaseName = "$archivesBaseName-$versionName"
2222
}

0 commit comments

Comments
 (0)