Updates the RN version to 0.59

This commit is contained in:
Sofiya Tepikin
2019-11-08 20:00:05 +01:00
parent 3dd235f8d9
commit 23ba5115d2
9 changed files with 6706 additions and 858 deletions
+7 -2
View File
@@ -98,6 +98,11 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.drip"
minSdkVersion rootProject.ext.minSdkVersion
@@ -125,7 +130,7 @@ android {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "arm64-v8a"
include "armeabi-v7a", "x86", "arm64-v8a", "x86-64"
}
}
buildTypes {
@@ -140,7 +145,7 @@ android {
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
def versionCodes = ["armeabi-v7a":1, "arm64-v8a":2]
def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86-64": 4]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =