Skip to content

Commit cdcb250

Browse files
authored
Merge pull request #7 from bringg/update_android_minsdkversion_21
android: update minsdkversion to 21
2 parents f83d1cd + 04f6985 commit cdcb250

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,8 @@ end
7373

7474
### Android project configuration
7575

76-
1. Make sure to set the `minSdkVersion` to at least 19.
77-
2. If your `minSdkVersion` is set to 20 or lower, you must enable multidex [(further instructions)](https://developer.android.com/studio/build/multidex).
78-
3. Make sure your app meets [Google Play's target API level requirements](https://developer.android.com/distribute/best-practices/develop/target-sdk.html).
76+
1. Make sure to set the `minSdkVersion` to at least 21.
77+
2. Make sure your app meets [Google Play's target API level requirements](https://developer.android.com/distribute/best-practices/develop/target-sdk.html).
7978

8079
## Running the example app
8180

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ android {
2929
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
3030
buildToolsVersion getExtOrDefault('buildToolsVersion')
3131
defaultConfig {
32-
minSdkVersion 19
32+
minSdkVersion 21
3333
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
3434
versionCode 1
3535
versionName "1.0"
36-
36+
multiDexEnabled true
3737
}
3838

3939
buildTypes {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bringg/react-native-bringg-driver-sdk",
3-
"version": "1.9.2",
3+
"version": "1.9.3",
44
"description": "A React Native wrapper for the native (iOS and Android) Bringg driver SDKs (currently supporting the active customer use case)",
55
"main": "lib/commonjs/index.js",
66
"module": "lib/module/index.js",

0 commit comments

Comments
 (0)