diff --git a/app-template/config-template.xml b/app-template/config-template.xml index 362a5810a..c7609dcb9 100644 --- a/app-template/config-template.xml +++ b/app-template/config-template.xml @@ -20,7 +20,7 @@ - + diff --git a/package.json b/package.json index 64a143c74..40253d2d0 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "postinstall": "npm run apply:bitpay && cordova prepare", "start": "npm run build:www && ionic serve --nolivereload --nogulp -s", "start:ios": "npm run build:www && npm run build:ios && npm run open:ios", - "start:android": "npm run build:www && npm run build:android && npm run open:android", + "start:android": "npm run build:www && npm run build:android && npm run run:android", "watch": "grunt watch", "build:www": "grunt", "build:www-release": "grunt prod", @@ -76,15 +76,16 @@ "build:android-release": "cordova prepare android && cordova build android --release", "open:ios": "open platforms/ios/*.xcodeproj", "open:android": "open -a open -a /Applications/Android\\ Studio.app platforms/android", - "final:www": "npm run clean && npm run build:www-release", + "final:www": "npm run clean-all && npm run build:www-release", "final:ios": "npm run final:www && npm run build:ios-release && npm run open:ios", - "final:android": "npm run final:www && npm run build:android-release && npm run open:android", + "final:android": "npm run final:www && npm run build:android-release && npm run run:android", "run:android": "cordova run android --device", "log:android": "adb logcat | grep chromium", "apply:copay": "cd app-template && node apply.js copay", "apply:bitpay": "cd app-template && node apply.js bitpay", "test": "./node_modules/.bin/grunt test-coveralls", - "clean": "git clean -dfx && npm install" + "clean": "trash platforms && trash plugins && npm run postinstall", + "clean-all": "git clean -dfx && npm install" }, "devDependencies": { "androidmanifest": "^2.0.0",