blob: f14f1475c467915fbecf55bbf26c2c5892eebe96 [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">
Xavier Ducrohet8677a172009-09-30 20:22:07 -07006 <application android:label="@string/app_name" ICON>
Xavier Ducrohetc51d1842009-09-25 15:52:52 -07007 <activity android:name="ACTIVITY_ENTRY_NAME"
The Android Open Source Project52d4c302009-03-03 19:29:09 -08008 android:label="@string/app_name">
9 <intent-filter>
10 <action android:name="android.intent.action.MAIN" />
11 <category android:name="android.intent.category.LAUNCHER" />
12 </intent-filter>
13 </activity>
14 </application>
15</manifest>