aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/plugins/com.android.ide.eclipse.adt/templates/BlankActivity/root/AndroidManifest.xml.ftl
blob: ffcce7900bce799d451b8c14a71eac1df9f08c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

    <application>

        <activity android:name=".${activityClass}"
            android:label="@string/activity_name">
            <intent-filter android:label="@string/activity_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>