Skip to content

Instantly share code, notes, and snippets.

@egomez99
Created March 16, 2012 16:30
Show Gist options
  • Save egomez99/2050909 to your computer and use it in GitHub Desktop.
Save egomez99/2050909 to your computer and use it in GitHub Desktop.
hardwareAccelerated=true
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<deployment-targets>
<target device="mobileweb">true</target>
<target device="iphone">true</target>
<target device="ipad">true</target>
<target device="android">true</target>
<target device="blackberry">false</target>
</deployment-targets>
<sdk-version>1.9.0.v20120213133135</sdk-version>
<id>com.appcelerator.com</id>
<name>AcScreenConfs</name>
<version>1.0</version>
<publisher>egomez</publisher>
<url>http://</url>
<description>not specified</description>
<copyright>2012 by egomez</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>true</analytics>
<guid>95f32b4c-0c20-4f0e-86d5-3bc8ece20641</guid>
<iphone>
<orientations device="iphone">
<orientation>Ti.UI.PORTRAIT</orientation>
</orientations>
<orientations device="ipad">
<orientation>Ti.UI.PORTRAIT</orientation>
<orientation>Ti.UI.UPSIDE_PORTRAIT</orientation>
<orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
<orientation>Ti.UI.LANDSCAPE_RIGHT</orientation>
</orientations>
</iphone>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>11</tool-api-level>
<manifest>
<supports-screens android:anyDensity="true" />
<uses-sdk android:minSdkVersion="11"/>
<application android:hardwareAccelerated="true">
<activity
android:configChanges="keyboardHidden|orientation"
android:name=".TestActivity" android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
</android>
<modules/>
</ti:app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment