updated lib to require RN 0.57 minimum

updated testApp to latest RN
updated Fetch to version 3.0.3
This commit is contained in:
Elad Gil
2019-04-01 14:31:53 +03:00
parent 3adae88029
commit 10aa10ebe3
21 changed files with 2034 additions and 3099 deletions
+5 -5
View File
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion 16
targetSdkVersion 26
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
ndk {
@@ -18,5 +18,5 @@ android {
dependencies {
//noinspection GradleDynamicVersion
implementation 'com.facebook.react:react-native:+'
compile "com.tonyodev.fetch2:fetch2:2.0.0-RC12"
implementation "com.tonyodev.fetch2:fetch2:3.0.3"
}