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

    <application>
        <activity android:name=".${CollectionName}Activity"
            android:label="@string/title_${collection_name}">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name=".${DetailName}Activity"
            android:label="@string/title_${detail_name}" />
    </application>

</manifest>