From 76ed46e38a06362544064d2b8641981ef232a195 Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Sat, 18 Feb 2017 15:35:28 -0800 Subject: [PATCH] readme update and cleanup --- README.md | 14 -------------- plugins/phonegap-plugin-push/plugin.xml | 2 +- .../phonegap-plugin-push/src/browser/manifest.json | 2 +- release_android.sh | 2 +- 4 files changed, 3 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 0d7e92b..b9beb8a 100644 --- a/README.md +++ b/README.md @@ -19,20 +19,6 @@ ionic resources --- -## Build - -In order to build that app, we need to build against specific version of web so that it can download all the necessary assets. The **build.php** contains all the information and paths about that you will need. The build target is used to download code and assets, and bundle them with the app. This way there is no need to have any external http requests other than our rest. - -```sh -./build.php dev -``` -or -```sh -./build.php live -``` - ---- - ## Release For iOS, use xcode for your releases. For Android, you can use the **release_android.sh** script. You will need to create an android keystore in the **cert** directory. diff --git a/plugins/phonegap-plugin-push/plugin.xml b/plugins/phonegap-plugin-push/plugin.xml index 53b4521..356512b 100755 --- a/plugins/phonegap-plugin-push/plugin.xml +++ b/plugins/phonegap-plugin-push/plugin.xml @@ -16,7 +16,7 @@ - + diff --git a/plugins/phonegap-plugin-push/src/browser/manifest.json b/plugins/phonegap-plugin-push/src/browser/manifest.json index 8cd3057..ce8390a 100644 --- a/plugins/phonegap-plugin-push/src/browser/manifest.json +++ b/plugins/phonegap-plugin-push/src/browser/manifest.json @@ -1,4 +1,4 @@ { "name": "Push Demo", - "gcm_sender_id": "***REMOVED***" + "gcm_sender_id": "85075801930" } diff --git a/release_android.sh b/release_android.sh index de0e14d..6a993bf 100755 --- a/release_android.sh +++ b/release_android.sh @@ -3,7 +3,7 @@ cordova build android --release rm -f platforms/android/build/outputs/apk/Cockpit.apk jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 \ -keystore cert/android/com.crunchbutton.cockpit.keystore \ --storepass ***REMOVED*** \ +-storepass **password** \ platforms/android/build/outputs/apk/android-release-unsigned.apk \ com.crunchbutton.cockpit ~/android/sdk/build-tools/19.1.0/zipalign -v 4 platforms/android/build/outputs/apk/android-release-unsigned.apk platforms/android/build/outputs/apk/Cockpit.apk