alloy
Version:
TiDev Titanium MVC Framework
73 lines (72 loc) • 3.42 kB
text/xml
<ti:app xmlns:ti="http://ti.appcelerator.org">
<deployment-targets>
<target device="iphone">true</target>
<target device="ipad">true</target>
<target device="android">true</target>
</deployment-targets>
<id>com.appcelerator.AlloyHarness</id>
<name>Harness</name>
<version>1.0</version>
<publisher>tlukasavage</publisher>
<url>http://</url>
<description>not specified</description>
<copyright>2012 by tlukasavage</copyright>
<icon>appicon.png</icon>
<persistent-wifi>false</persistent-wifi>
<prerendered-icon>false</prerendered-icon>
<statusbar-style>default</statusbar-style>
<statusbar-hidden>false</statusbar-hidden>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>false</analytics>
<guid>92f97a58-b1da-4de6-a761-0a4a33892dbc</guid>
<property name="ti.ui.defaultunit">system</property>
<ios>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>Ti.UI.PORTRAIT</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>Ti.UI.PORTRAIT</string>
<string>Ti.UI.UPSIDE_PORTRAIT</string>
<string>Ti.UI.LANDSCAPE_LEFT</string>
<string>Ti.UI.LANDSCAPE_RIGHT</string>
</array>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<!-- Allows the API to download data from Google Map servers -->
<uses-permission android:name="android.permission.INTERNET"/>
<!-- Allows the API to cache data -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<!-- Use GPS for device location -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<!-- Use Wi-Fi or mobile connection for device location -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<!-- Allows the API to access Google web-based services -->
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<!-- Specify OpenGL ES 2.0 as a requirement -->
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<!-- Replace com.domain.appid with your application ID -->
<uses-permission android:name="com.appcelerator.AlloyHarness.permission.MAPS_RECEIVE"/>
<permission android:name="com.appcelerator.AlloyHarness.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<application>
<!-- Replace "PASTE YOUR GOOGLE MAPS API KEY HERE" with the Google API key you obtained -->
<meta-data android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBbK9MVK9fHB2OyoP_uzE7msXJzHi60C6o"/>
</application>
</manifest>
</android>
<modules>
<module platform="iphone">ti.paint</module>
<module platform="android">ti.map</module>
<module platform="iphone">ti.map</module>
</modules>
</ti:app>