Fix android builder

This commit is contained in:
Gustavo Maximiliano Cortez 2016-07-13 11:24:46 -03:00
parent 28f30a5473
commit c0c7b32723
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 5 additions and 2 deletions

View File

@ -91,7 +91,7 @@ if [ ! -d $PROJECT ]; then
if [ $CURRENT_OS == "IOS" ]; then
cordova plugin add phonegap-plugin-push@1.5.3
checkOK
cordova plugin add cordova-plugin-touch-id && cordova prepare
checkOK
@ -108,7 +108,10 @@ if [ ! -d $PROJECT ]; then
if [ $CURRENT_OS == "ANDROID" ]; then
cordova plugin add phonegap-plugin-push@1.2.3
checkOK
## Fix plugin
rm -rf $PROJECT/platforms/android/res/values-es
cordova plugin add cordova-plugin-android-fingerprint-auth
checkOK
fi