blob: b1be4c87005f49a0acc8d8a5971f469b8c5f3d96 [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="PACKAGE"
4 android:versionCode="1"
5 android:versionName="1.0">
6 <application android:hasCode="false">
7 <activity android:name="android.app.AliasActivity" android:label="@string/app_name">
8 <intent-filter>
9 <action android:name="android.intent.action.MAIN" />
10 <category android:name="android.intent.category.LAUNCHER" />
11 </intent-filter>
12 <meta-data android:name="android.app.alias" android:resource="@xml/alias" />
13 </activity>
14 </application>
15</manifest>