Update readme to reflect changes made in #1418 (#1423)

This commit is contained in:
Rickard Ekman 2018-03-31 08:41:46 +02:00 committed by Tomas Roos
parent 24e3ae9e3e
commit 33b1d16b06
1 changed files with 5 additions and 5 deletions

View File

@ -168,13 +168,13 @@ Google Symbol Utilities: https://www.gstatic.com/cpdc/dbffca986f6337f8-GoogleSym
compile (project(':react-native-camera')) { compile (project(':react-native-camera')) {
exclude group: "com.google.android.gms" exclude group: "com.google.android.gms"
compile 'com.android.support:exifinterface:25.+' compile 'com.android.support:exifinterface:25.+'
compile ('com.google.android.gms:play-services-vision:10.2.0') { compile ('com.google.android.gms:play-services-vision:12.0.1') {
force = true force = true
} }
} }
``` ```
> You may need to use different versions, e.g. `27.+` instead of `25.+` and `11.8.0` instead of `10.2.0`. > You may need to use different exifinterface versions, e.g. `27.+` instead of `25.+`.
5. Declare the permissions in your Android Manifest (required for `video recording` feature) 5. Declare the permissions in your Android Manifest (required for `video recording` feature)
@ -200,7 +200,7 @@ The current Android library defaults to the below values for the Google SDK and
def DEFAULT_COMPILE_SDK_VERSION = 26 def DEFAULT_COMPILE_SDK_VERSION = 26
def DEFAULT_BUILD_TOOLS_VERSION = "26.0.2" def DEFAULT_BUILD_TOOLS_VERSION = "26.0.2"
def DEFAULT_TARGET_SDK_VERSION = 26 def DEFAULT_TARGET_SDK_VERSION = 26
def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "10.2.0" def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "12.0.1"
def DEFAULT_SUPPORT_LIBRARY_VERSION = "27.1.0" def DEFAULT_SUPPORT_LIBRARY_VERSION = "27.1.0"
``` ```
@ -220,7 +220,7 @@ ext {
compileSdkVersion = 26 compileSdkVersion = 26
targetSdkVersion = 26 targetSdkVersion = 26
buildToolsVersion = "26.0.2" buildToolsVersion = "26.0.2"
googlePlayServicesVersion = "12.0.0" googlePlayServicesVersion = "12.0.1"
supportLibVersion = "27.1.0" supportLibVersion = "27.1.0"
} }
``` ```
@ -235,7 +235,7 @@ buildscript {
def DEFAULT_COMPILE_SDK_VERSION = 26 def DEFAULT_COMPILE_SDK_VERSION = 26
def DEFAULT_BUILD_TOOLS_VERSION = "26.0.2" def DEFAULT_BUILD_TOOLS_VERSION = "26.0.2"
def DEFAULT_TARGET_SDK_VERSION = 26 def DEFAULT_TARGET_SDK_VERSION = 26
def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "10.2.0" def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "12.0.1"
def DEFAULT_SUPPORT_LIBRARY_VERSION = "27.1.0" def DEFAULT_SUPPORT_LIBRARY_VERSION = "27.1.0"
android { android {