Advertisement
DODMax

Untitled

Oct 20th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.72 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <widget id="xx.xxx.xxxx" version="0.0.8" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  3.     <name>xxxxxx</name>
  4.     <description>xxxxxxx</description>
  5.     <author email="xxxxxx" href="http://xxxxx.xxx/">xxxxxxx</author>
  6.     <content src="index.html" />
  7.     <access origin="*" />
  8.     <allow-intent href="http://*/*" />
  9.     <allow-intent href="https://*/*" />
  10.     <allow-intent href="tel:*" />
  11.     <allow-intent href="sms:*" />
  12.     <allow-intent href="mailto:*" />
  13.     <allow-intent href="geo:*" />
  14.     <platform name="android">
  15.         <allow-intent href="market:*" />
  16.         <icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" />
  17.         <icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png" />
  18.         <icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png" />
  19.         <icon density="xhdpi" src="resources/android/icon/drawable-xhdpi-icon.png" />
  20.         <icon density="xxhdpi" src="resources/android/icon/drawable-xxhdpi-icon.png" />
  21.         <icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png" />
  22.         <splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png" />
  23.         <splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png" />
  24.         <splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png" />
  25.         <splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png" />
  26.         <splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png" />
  27.         <splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" />
  28.     </platform>
  29.     <platform name="ios">
  30.         <allow-intent href="itms:*" />
  31.         <allow-intent href="itms-apps:*" />
  32.     </platform>
  33.     <preference name="AutoHideSplashScreen" value="true" />
  34.     <preference name="SplashScreenDelay" value="10000" />
  35.     <preference name="SplashMaintainAspectRatio" value="true" />
  36.     <preference name="ShowSplashScreenSpinner" value="false" />
  37.     <preference name="webviewbounce" value="false" />
  38.     <preference name="UIWebViewBounce" value="false" />
  39.     <preference name="DisallowOverscroll" value="true" />
  40.     <preference name="android-minSdkVersion" value="16" />
  41.     <preference name="BackupWebStorage" value="none" />
  42.     <preference name="Orientation" value="portrait" />
  43.     <feature name="StatusBar">
  44.         <param name="ios-package" onload="true" value="CDVStatusBar" />
  45.     </feature>
  46.     <plugin name="cordova-clipboard" spec="^1.0.0" />
  47.     <plugin name="cordova-plugin-camera" spec="^2.4.1" />
  48.     <plugin name="cordova-plugin-camera-preview" spec="^0.9.0" />
  49.     <plugin name="cordova-plugin-facebook4" spec="^1.7.4">
  50.         <variable name="APP_ID" value="xxxxxx" />
  51.         <variable name="APP_NAME" value="xxxxxx" />
  52.     </plugin>
  53.     <plugin name="cordova-plugin-file" spec="^4.3.2" />
  54.     <plugin name="cordova-plugin-file-transfer" spec="^1.6.3" />
  55.     <plugin name="cordova-plugin-ionic" spec="^2.0.0">
  56.         <variable name="APP_ID" value="xxxxxx" />
  57.         <variable name="CHANNEL_NAME" value="Master" />
  58.         <variable name="UPDATE_METHOD" value="background" />
  59.         <variable name="UPDATE_API" value="https://api.ionicjs.com" />
  60.         <variable name="MAX_STORE" value="2" />
  61.     </plugin>
  62.     <plugin name="cordova-plugin-statusbar" spec="^2.2.3" />
  63.     <plugin name="cordova-plugin-whitelist" spec="^1.3.1" />
  64.     <plugin name="cordova-plugin-x-socialsharing" spec="^5.1.8" />
  65.     <plugin name="ionic-plugin-deeplinks" spec="^1.0.15">
  66.         <variable name="URL_SCHEME" value="xxxxx" />
  67.         <variable name="DEEPLINK_SCHEME" value="https" />
  68.         <variable name="DEEPLINK_HOST" value="xxxxx.xxxxx" />
  69.         <variable name="ANDROID_PATH_PREFIX" value="/" />
  70.         <variable name="ANDROID_2_PATH_PREFIX" value="/" />
  71.         <variable name="ANDROID_3_PATH_PREFIX" value="/" />
  72.         <variable name="ANDROID_4_PATH_PREFIX" value="/" />
  73.         <variable name="ANDROID_5_PATH_PREFIX" value="/" />
  74.         <variable name="DEEPLINK_2_SCHEME" value=" " />
  75.         <variable name="DEEPLINK_2_HOST" value=" " />
  76.         <variable name="DEEPLINK_3_SCHEME" value=" " />
  77.         <variable name="DEEPLINK_3_HOST" value=" " />
  78.         <variable name="DEEPLINK_4_SCHEME" value=" " />
  79.         <variable name="DEEPLINK_4_HOST" value=" " />
  80.         <variable name="DEEPLINK_5_SCHEME" value=" " />
  81.         <variable name="DEEPLINK_5_HOST" value=" " />
  82.     </plugin>
  83.     <plugin name="ionic-plugin-keyboard" spec="^2.2.1" />
  84.     <plugin name="cordova-plugin-splashscreen" spec="^4.0.3" />
  85. </widget>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement