Commit ef167bae828933bcdb7969abe10b2882f984c290

Authored by Andrei Pfeiffer
1 parent 966be91a
Exists in master

Update android support & compile versions

examples/custom-webview-android/android/app/build.gradle
... ... @@ -137,11 +137,11 @@ android {
137 137 }
138 138  
139 139 dependencies {
140   - compile project(':react-native-webview-android-file-upload')
141   - compile fileTree(dir: "libs", include: ["*.jar"])
142   - compile "com.android.support:support-v4:26.1.0"
143   - compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
144   - compile "com.facebook.react:react-native:+" // From node_modules
  140 + implementation project(':react-native-webview-android-file-upload')
  141 + implementation fileTree(dir: "libs", include: ["*.jar"])
  142 + implementation "com.android.support:support-v4:${rootProject.ext.supportLibVersion}"
  143 + implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
  144 + implementation "com.facebook.react:react-native:+" // From node_modules
145 145 }
146 146  
147 147 // Run this once to be able to run the application with BUCK
... ...
examples/custom-webview-android/android/build.gradle
... ... @@ -34,9 +34,9 @@ allprojects {
34 34 }
35 35  
36 36 ext {
37   - buildToolsVersion = "26.0.3"
  37 + buildToolsVersion = "27.0.3"
38 38 minSdkVersion = 16
39 39 compileSdkVersion = 26
40 40 targetSdkVersion = 26
41   - supportLibVersion = "26.1.0"
  41 + supportLibVersion = "27.1.1"
42 42 }
... ...