Guest User

Untitled

a guest
Jan 1st, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.41 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <widget id="com.bla.app" version="1.0.42" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  3.     <name>My app</name>
  4.     <description>
  5.         My app is great
  6.     </description>
  7.     <author email="[email protected]" href="http://www.bla.com">
  8.         Me
  9.     </author>
  10.     <content src="index.html" />
  11.  
  12.     <!-- <preference name="permissions" value="none" /> -->
  13.     <preference name="orientation" value="portrait" />
  14.     <preference name="target-device" value="universal" />
  15.     <preference name="fullscreen" value="false" />
  16.     <!-- <preference name="webviewbounce" value="true" /> -->
  17.     <!-- <preference name="prerendered-icon" value="true" /> -->
  18.     <!-- <preference name="stay-in-webview" value="false" /> -->
  19.     <preference name="SplashScreen" value="splash" />
  20.     <preference name="SplashScreenDelay" value="1000" />
  21.     <preference name="SplashMaintainAspectRatio" value="true" />
  22.     <preference name="android-minSdkVersion" value="21" />
  23.     <preference name="AndroidLaunchMode" value="singleTop"/>
  24.     <preference name="loadUrlTimeoutValue" value="50000" />
  25.  
  26.     <plugin name="cordova-plugin-whitelist" spec="1" />
  27.     <access origin="*" />
  28.     <allow-intent href="http://*/*" />
  29.     <allow-intent href="https://*/*" />
  30.     <allow-intent href="tel:*" />
  31.     <allow-intent href="sms:*" />
  32.     <allow-intent href="mailto:*" />
  33.     <allow-intent href="geo:*" />
  34.  
  35.     <platform name="android">
  36.         <allow-intent href="market:*" />
  37.         <icon src="www/res/icon/android/icon_48_mdpi.png" density="ldpi" />
  38.         <icon src="www/res/icon/android/icon_48_mdpi.png" density="mdpi" />
  39.         <icon src="www/res/icon/android/icon_72_hdpi.png" density="hdpi" />
  40.         <icon src="www/res/icon/android/icon_96_xhdpi.png" density="xhdpi" />
  41.         <icon src="www/res/icon/android/icon_144_xxhdpi.png" density="xxhdpi" />
  42.         <icon src="www/res/icon/android/icon_192_xxxhdpi.png" density="xxxhdpi" />
  43.     </platform>
  44.  
  45.     <!-- Urban Airship app credentials -->
  46.     <!-- <preference name="com.urbanairship.production_app_key" value="Your Production App Key" /> -->
  47.     <!-- <preference name="com.urbanairship.production_app_secret" value="Your Production App Secret" /> -->
  48.     <preference name="com.urbanairship.development_app_key" value="app key" />
  49.     <preference name="com.urbanairship.development_app_secret" value="app secret" />
  50.  
  51.     <!-- Required for Android. -->
  52.     <preference name="com.urbanairship.gcm_sender" value="Your GCM Sender ID" />
  53.  
  54.     <!-- If the app is in production or not -->
  55.     <preference name="com.urbanairship.in_production" value="false" />
  56.  
  57.     <!-- Optional config values -->
  58.  
  59.     <!-- Enable push when the application launches -->
  60.     <preference name="com.urbanairship.enable_push_onlaunch" value="true" />
  61.  
  62.     <!-- Override the Android notification icon -->
  63.     <preference name="com.urbanairship.notification_icon" value="ic_notification" />
  64.  
  65.     <!-- Specify the notification accent color for Android API 21+ (Lollipop) -->
  66.     <preference name="com.urbanairship.notification_accent_color" value="#0000ff" />
  67.  
  68.     <!-- Clear the iOS badge on launch -->
  69.     <!-- <preference name="com.urbanairship.clear_badge_onlaunch" value="true | false" /> -->
  70.  
  71.     <!-- <platform name="ios">
  72.        <allow-intent href="itms:*" />
  73.        <allow-intent href="itms-apps:*" />
  74.    </platform> -->
  75. </widget>
Advertisement
Add Comment
Please, Sign In to add comment