Skip to content

Instantly share code, notes, and snippets.

@AppWerft
Created May 19, 2014 11:37
Show Gist options
  • Save AppWerft/6a140bd41e601b48a86a to your computer and use it in GitHub Desktop.
Save AppWerft/6a140bd41e601b48a86a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>de.appwerft.cm</id>
<name>CriticalMass</name>
<version>1.0.0</version>
<publisher>rainerschleevoigt</publisher>
<url>http://</url>
<description>not specified</description>
<copyright>2014 by rainerschleevoigt</copyright>
<icon>appicon.png</icon>
<fullscreen>true</fullscreen>
<navbar-hidden>true</navbar-hidden>
<analytics>false</analytics>
<guid>d36d656f-4223****5942618</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="100" android:versionName="1.0.0">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<uses-permission android:name="de.appwerft.cm.permission.MAPS_RECEIVE"/>
<permission
android:name="de.appwerft.cm.permission.MAPS_RECEIVE" android:protectionLevel="signature"/>
<application android:theme="@style/Theme.Sternfahrt">
<activity android:configChanges="keyboardHidden"
android:name="org.appcelerator.titanium.TiActivity" android:screenOrientation="sensorPortrait"/>
<activity android:configChanges="keyboardHidden"
android:label=""
android:name="ti.modules.titanium.ui.TiTabActivity" android:screenOrientation="sensorPortrait"/>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyCKy*******GQn0yYX4aFJS_v-wM"/>
<activity android:alwaysRetainTaskState="true"
android:configChanges="keyboardHidden|orientation"
android:label="CriticalMass"
android:launchMode="singleTop"
android:name=".CriticalMassActivity" android:theme="@style/Theme.Titanium">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="11"/>
<uses-sdk android:targetSdkVersion="19"/>
</manifest>
<services>
<service type="interval" url="geo.service.js"/>
</services>
</android>
<modules>
<module platform="iphone">ti.map</module>
<module platform="android">ti.map</module>
<module platform="android">bencoding.alarmmanager</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="blackberry">false</target>
<target device="ipad">false</target>
<target device="iphone">false</target>
<target device="mobileweb">false</target>
<target device="tizen">false</target>
</deployment-targets>
<sdk-version>3.2.3.GA</sdk-version>
</ti:app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment