Skip to content

Instantly share code, notes, and snippets.

@ajinasokan
Last active November 3, 2016 06:19
Show Gist options
  • Save ajinasokan/7c3cc74903a6f3c9a21dea8347b2b08f to your computer and use it in GitHub Desktop.
Save ajinasokan/7c3cc74903a6f3c9a21dea8347b2b08f to your computer and use it in GitHub Desktop.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp">
<application
android:label="AppNameInSettings"
android:theme="@android:style/Theme.Light.NoTitleBar">
<activity
android:name=".MainActivity"
android:label="AppNameInLauncher" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment