Skip to content

Commit

Permalink
Update deps (#591)
Browse files Browse the repository at this point in the history
* update react-native-push-notification

* upgrade react-native to v0.59.4
  • Loading branch information
Bruno Barbieri authored Apr 9, 2019
1 parent 88d9ea2 commit ebe544b
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 82 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ android {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86-64"
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
buildTypes {
Expand All @@ -233,7 +233,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, "x86":2, "arm64-v8a": 3, "x86-64": 4]
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 =
Expand Down
Loading

0 comments on commit ebe544b

Please sign in to comment.