From 7c43f0ade7a34e57e9d5d52067807aacb7d14111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Edgardo=20Baz=C3=A1n?= Date: Thu, 5 May 2016 11:28:04 -0300 Subject: [PATCH] fix : Clicking on the Push Notification doesn't open the notified wallet (#4185) --- cordova/build.sh | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/cordova/build.sh b/cordova/build.sh index 0f9b75025..8ee808304 100755 --- a/cordova/build.sh +++ b/cordova/build.sh @@ -79,6 +79,9 @@ if [ ! -d $PROJECT ]; then echo "${OpenColor}${Green}* Installing plugins... ${CloseColor}" + cordova plugin add cordova-plugin-disable-bitcode + checkOK + cordova plugin add https://github.com/florentvaldelievre/virtualartifacts-webIntent.git checkOK @@ -91,6 +94,16 @@ if [ ! -d $PROJECT ]; then checkOK fi + if [ $CURRENT_OS == "IOS" ]; then + cordova plugin add phonegap-plugin-push@1.5.3 + checkOK + fi + + if [ $CURRENT_OS == "ANDROID" ]; then + cordova plugin add phonegap-plugin-push@1.2.3 + checkOK + fi + cordova plugin add cordova-plugin-globalization checkOK @@ -103,9 +116,6 @@ if [ ! -d $PROJECT ]; then cordova plugin add cordova-plugin-statusbar checkOK - cordova plugin add phonegap-plugin-push@1.2.3 - checkOK - cordova plugin add https://github.com/cmgustavo/Custom-URL-scheme.git --variable URL_SCHEME=bitcoin --variable SECOND_URL_SCHEME=copay checkOK