The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame^] | 1 | <?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> |