Skip to content

Instantly share code, notes, and snippets.

@Sophrinix
Created September 5, 2013 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sophrinix/6450518 to your computer and use it in GitHub Desktop.
Save Sophrinix/6450518 to your computer and use it in GitHub Desktop.
a tiapp.xml approach. Good discussion https://twitter.com/FokkeZB/status/375613981568012288
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application>
<activity android:name=".HipsterdashActivity"
android:label="hipsterdash" android:theme="@style/Theme.Titanium"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
</android>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment