aboutsummaryrefslogtreecommitdiffstats
path: root/templates/AndroidManifest.alias.template
blob: 6606d3dbb9865147f9c2cfeb9f284719ce406f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<!--
ALIAS PROJECTS ARE CURRENT NOT SUPPORTED.
THIS FILE IS CURRENTLY BROKEN AND SHOULD NOT BE USED.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="PACKAGE"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:hasCode="false">
        <activity android:name="android.app.AliasActivity" android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="android.app.alias" android:resource="@xml/alias" />
        </activity>
    </application>
</manifest>