@nativeloop/template-default
Version:
Default template for {nativeloop} mobile apps
110 lines • 3.91 kB
text/xml
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>${id}</id>
<name>${name}</name>
<version>1.0.0.0</version>
<publisher>${publisher}</publisher>
<url>${url}</url>
<description>${description}</description>
<copyright>${copyright}</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>false</analytics>
<guid>${guid}</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<property name="run-on-main-thread" type="bool">true</property>
<ios>
<use-jscore-framework>true</use-jscore-framework>
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<use-app-thinning>true</use-app-thinning>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>NSCameraUsageDescription</key>
<string>Can we use your camera?</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Can we save to your library?</string>
<key>NSMicrophoneUsageDescription</key>
<string>Can we use your microphone?</string>
<key>NSAppleMusicUsageDescription</key>
<string>Can we use your music library?</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fb</string>
<string>fbapi</string>
<string>fbauth2</string>
<string>fbshareextension</string>
<string>fb-messenger-api</string>
<string>twitter</string>
<string>instagram</string>
<string>comgooglemaps</string>
<string>${id}</string>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<!-- same as ti:app/id -->
<string>${id}</string>
<key>CFBundleURLSchemes</key>
<array>
<!-- your custom scheme -->
<string>${id}</string>
<!-- same as 'fb' plus ti:app/property[name=ti.facebook.appid] -->
<!--<string>fb123456789</string>-->
</array>
</dict>
</array>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
</android>
<mobileweb>
<precache></precache>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<modules>
<!--<module>hyperloop</module>-->
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
<target device="mobileweb">true</target>
<target device="windows">true</target>
</deployment-targets>
<sdk-version>6.0.0.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
<!--<plugin>hyperloop</plugin>-->
</plugins>
</ti:app>