-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
35 additions
and
8 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 |
---|---|---|
|
@@ -35,4 +35,5 @@ UserInterfaceState.xcuserstate | |
.todo | ||
|
||
out | ||
*.apk | ||
*.apk | ||
.env* |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<name>Saza</name> | ||
<description>A wallet that supports Stellar Lumens(XLM) and assets issued on the Stellar network.</description> | ||
<author email="[email protected]" href="https://saza.io/">Peter Oliha</author> | ||
<content original-src="index.html" src="http://localhost:8100" /> | ||
<content src="index.html" /> | ||
<access origin="*" /> | ||
<allow-intent href="http://*/*" /> | ||
<allow-intent href="https://*/*" /> | ||
|
@@ -110,5 +110,4 @@ | |
<plugin name="cordova-plugin-splashscreen" spec="5.0.2" /> | ||
<plugin name="cordova-plugin-ionic-webview" spec="^4.0.0" /> | ||
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.0.5" /> | ||
<allow-navigation href="http://localhost:8100" sessionid="433d1cd8" /> | ||
</widget> |
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
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
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,10 +1,18 @@ | ||
#! /bin/bash | ||
set -e | ||
|
||
if [ -d "./dist" ] | ||
then | ||
echo "Removing dist directory from previous build ..." | ||
rm -rf dist | ||
fi | ||
|
||
echo "Making dist directory ..." | ||
mkdir dist | ||
|
||
|
||
echo "Building production release ..." | ||
ng build --prod --base-href ./ | ||
#ng build --prod --base-href ./ | ||
|
||
echo "Making electron build ..." | ||
electron-forge make |
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
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