-
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.
Merge pull request #52 from raychz/app-store-deployment
App store deployment
- Loading branch information
Showing
77 changed files
with
763 additions
and
1,223 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"android": { | ||
"debug": { | ||
"keystore": "../my-release-key.jks", | ||
"storePassword": "", | ||
"alias": "my-alias", | ||
"password": "", | ||
"keystoreType": "" | ||
}, | ||
"release": { | ||
"keystore": "../my-release-key.jks", | ||
"storePassword": "", | ||
"alias": "my-alias", | ||
"password": "", | ||
"keystoreType": "" | ||
} | ||
} | ||
} |
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,8 +1,8 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget id="io.tabify.app" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>tabify</name> | ||
<description>An awesome Ionic/Cordova app.</description> | ||
<author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author> | ||
<widget id="com.tabifyapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>Tabify</name> | ||
<description>The easiest way to pay and split the tab at your favorite restaurants. Redefine how you dine with Tabify.</description> | ||
<author email="hi@tabifyapp.com" href="https://tabifyapp.com/">Tabify Team</author> | ||
<content src="index.html" /> | ||
<access origin="*" /> | ||
<allow-intent href="http://*/*" /> | ||
|
@@ -11,14 +11,18 @@ | |
<allow-intent href="sms:*" /> | ||
<allow-intent href="mailto:*" /> | ||
<allow-intent href="geo:*" /> | ||
<preference name="SplashScreenDelay" value="10000" /> | ||
<preference name="FadeSplashScreenDuration" value="1000" /> | ||
<preference name="ShowSplashScreen" value="true" /> | ||
<preference name="ShowSplashScreenSpinner" value="false" /> | ||
<preference name="FadeSplashScreen" value="true" /> | ||
<preference name="AutoHideSplashScreen" value="false" /> | ||
<preference name="ScrollEnabled" value="false" /> | ||
<preference name="android-minSdkVersion" value="19" /> | ||
<preference name="BackupWebStorage" value="none" /> | ||
<preference name="SplashMaintainAspectRatio" value="true" /> | ||
<preference name="FadeSplashScreenDuration" value="300" /> | ||
<preference name="SplashShowOnlyFirstTime" value="false" /> | ||
<preference name="SplashScreen" value="screen" /> | ||
<preference name="SplashScreenDelay" value="3000" /> | ||
<platform name="android"> | ||
<preference name="WKPort" value="9634" /> | ||
<allow-intent href="market:*" /> | ||
|
@@ -79,6 +83,24 @@ | |
<splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" /> | ||
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" /> | ||
<splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" /> | ||
<icon height="20" src="resources/ios/icon/icon-20.png" width="20" /> | ||
<icon height="40" src="resources/ios/icon/[email protected]" width="40" /> | ||
<icon height="60" src="resources/ios/icon/[email protected]" width="60" /> | ||
<icon height="29" src="resources/ios/icon/icon-29.png" width="29" /> | ||
<icon height="58" src="resources/ios/icon/[email protected]" width="58" /> | ||
<icon height="87" src="resources/ios/icon/[email protected]" width="87" /> | ||
<icon height="48" src="resources/ios/icon/[email protected]" width="48" /> | ||
<icon height="55" src="resources/ios/icon/[email protected]" width="55" /> | ||
<icon height="88" src="resources/ios/icon/[email protected]" width="88" /> | ||
<icon height="172" src="resources/ios/icon/[email protected]" width="172" /> | ||
<icon height="196" src="resources/ios/icon/[email protected]" width="196" /> | ||
<icon height="216" src="resources/ios/icon/[email protected]" width="216" /> | ||
<splash height="2688" src="resources/ios/splash/Default-2688h~iphone.png" width="1242" /> | ||
<splash height="1242" src="resources/ios/splash/Default-Landscape-2688h~iphone.png" width="2688" /> | ||
<splash height="1792" src="resources/ios/splash/Default-1792h~iphone.png" width="828" /> | ||
<splash height="828" src="resources/ios/splash/Default-Landscape-1792h~iphone.png" width="1792" /> | ||
<splash height="2436" src="resources/ios/splash/Default-2436h.png" width="1125" /> | ||
<splash height="1125" src="resources/ios/splash/Default-Landscape-2436h.png" width="2436" /> | ||
</platform> | ||
<allow-navigation href="http://172.20.26.63:8100" /> | ||
<allow-navigation href="http://10.9.27.25:8100" /> | ||
|
@@ -116,10 +138,4 @@ | |
<allow-navigation href="http://172.20.24.174:8100" /> | ||
<allow-navigation href="http://172.20.24.174:8101" /> | ||
<allow-navigation href="http://localhost:9634/*" /> | ||
<engine name="browser" spec="5.0.3" /> | ||
<engine name="android" spec="6.4.0" /> | ||
<engine name="ios" spec="4.5.5" /> | ||
<plugin name="cordova-plugin-ionic-webview" spec="^2.3.1"> | ||
<variable name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" value="27.+" /> | ||
</plugin> | ||
</widget> |
Oops, something went wrong.