Joe Onorato | 56f880a | 2009-11-25 16:47:17 -0500 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.batterywaster"> |
| 3 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
| 4 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 5 | |
| 6 | <application> |
| 7 | <activity android:name="BatteryWaster" android:label="Battery Waster"> |
| 8 | <intent-filter> |
| 9 | <action android:name="android.intent.action.MAIN" /> |
| 10 | <category android:name="android.intent.category.DEFAULT" /> |
| 11 | <category android:name="android.intent.category.LAUNCHER" /> |
| 12 | </intent-filter> |
| 13 | </activity> |
| 14 | </application> |
| 15 | </manifest> |