-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/IDEMSInternational/covid-…
- Loading branch information
Showing
6 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,5 @@ platforms | |
plugins | ||
www | ||
*.keystore | ||
releases | ||
releases/* | ||
!releases/.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Building Release | ||
|
||
``` | ||
ionic cordova build android --prod --release | ||
``` | ||
|
||
This will generate a release apk in `platforms\android\app\build\outputs\apk\release` | ||
|
||
``` | ||
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore covid-tips.keystore platforms\android\app\build\outputs\apk\release\app-release-unsigned.apk idems | ||
``` | ||
|
||
Note, this assumes that you have jarsigner configured in Path (google if not) and app keystore file in root folder (request access from devs) with password knowledge | ||
|
||
``` | ||
zipalign -v 4 platforms\android\app\build\outputs\apk\release\app-release-unsigned.apk releases/covid-tips.apk | ||
``` | ||
|
||
Assumes zipalign in path (if not google). Recommended to rename corresponding apk to match version number | ||
(TODO - automate name from package.json or config.xml) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget id="international.idems.apps.cortest3" version="1.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>MyApp</name> | ||
<name>Demo-1 Tips</name> | ||
<description>Demo-1 Tips</description> | ||
<author email="[email protected]" href="https://idems.international">IDEMS international</author> | ||
<content src="index.html" /> | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.