Skip to content

Instantly share code, notes, and snippets.

@anirudh24seven
Created March 2, 2014 14:14
Show Gist options
  • Save anirudh24seven/9307138 to your computer and use it in GitHub Desktop.
Save anirudh24seven/9307138 to your computer and use it in GitHub Desktop.
WordPress for Android - AndroidManifest points to PostsActivity as the Launcher activity
<application
android:name="WordPress"
android:allowBackup="false"
android:hardwareAccelerated="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:theme="@style/WordPress" >
...
<activity
android:name=".ui.posts.PostsActivity"
android:configChanges="orientation|keyboardHidden|screenSize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment