Skip to content

Commit 4e882a7

Browse files
Downgrade minimum sdk version to 14 (#630)
* downgrade minimum sdk version to 14 * bump mapbox-android-sdk version to the one which includes min sdk version 14 * bump support libraries version to match the one used in mapbox-android-sdk
1 parent c96df5b commit 4e882a7

3 files changed

Lines changed: 14 additions & 9 deletions

File tree

mapbox/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
allprojects {
2020
repositories {
2121
jcenter()
22-
mavenCentral()
22+
maven { url 'https://maven.google.com' }
2323
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
2424
}
2525

mapbox/dependencies.gradle

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@ ext {
33
MasVersionCode = 2 * 1000 + 1 * 100 + 0 * 10 + 0
44
MasVersionName = "2.1.0-SNAPSHOT"
55

6-
minSdkVersion = 15
6+
minSdkVersion = 14
77
targetSdkVersion = 25
88
compileSdkVersion = 25
99
buildToolsVersion = "25.0.3"
10+
supportLibVersion = "25.4.0"
1011

1112
dep = [
1213
// Support
13-
supportAppcompat : 'com.android.support:appcompat-v7:25.3.1',
14-
supportCompat : 'com.android.support:support-compat:25.3.1',
15-
supportDesign : 'com.android.support:design:25.3.1',
16-
supportRecyclerview : 'com.android.support:recyclerview-v7:25.3.1',
17-
supportCardView : 'com.android.support:cardview-v7:25.3.1',
14+
supportAppcompat : "com.android.support:appcompat-v7:${supportLibVersion}",
15+
supportCompat : "com.android.support:support-compat:${supportLibVersion}",
16+
supportDesign : "com.android.support:design:${supportLibVersion}",
17+
supportRecyclerview : "com.android.support:recyclerview-v7:${supportLibVersion}",
18+
supportCardView : "com.android.support:cardview-v7:${supportLibVersion}",
1819

1920
// mapbox
20-
mapbox : 'com.mapbox.mapboxsdk:mapbox-android-sdk:5.1.4@aar',
21+
mapbox : 'com.mapbox.mapboxsdk:mapbox-android-sdk:5.2.0-SNAPSHOT@aar',
2122

2223
// gson
2324
gson : 'com.google.code.gson:gson:2.8.0',
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
<manifest package="com.mapbox.services.android.telemetry" />
1+
<manifest xmlns:tools="http://schemas.android.com/tools"
2+
package="com.mapbox.services.android.telemetry">
3+
4+
<uses-sdk tools:overrideLibrary="com.mapzen.lost"/>
5+
</manifest>

0 commit comments

Comments
 (0)