Last active
November 3, 2016 06:19
-
-
Save ajinasokan/7c3cc74903a6f3c9a21dea8347b2b08f to your computer and use it in GitHub Desktop.
Manifest for a basic Android App. Repo: https://github.com/ajinasokan/smallest-android-app-from-scratch Read: https://apkchef.net/build-smallest-android-app/
This file contains 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
<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