Created
September 8, 2011 20:36
-
-
Save jonalter/1204603 to your computer and use it in GitHub Desktop.
Android: splash screen orientation set from tiapp.xml as of Sep 8 2011 11:25 r5be876f7 1.8.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<android xmlns:android="http://schemas.android.com/apk/res/android"> | |
<manifest> | |
<supports-screens android:anyDensity="false"/> | |
<application android:debuggable="true"> | |
<activity android:alwaysRetainTaskState="true" | |
android:name=".TitestActivity" | |
android:configChanges="keyboardHidden|orientation" | |
android:screenOrientation="portrait" | |
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> | |
</manifest> | |
</android> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment