blob: 50c8cac97b6c24e5bdab66cdd6563780aaafb3cc [file] [log] [blame]
Mike Wielgoszb7e32812012-01-28 12:42:31 +00001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 Crossbones Software
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.crossbones.welcome"
19 coreApp="true" >
20
Mike Wielgosz9407a7b2012-02-19 22:39:30 +000021 <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="15" />
22 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
Mike Wielgoszc6fa6bb2012-01-28 22:30:16 +000023 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Mike Wielgoszf9017b12012-02-18 23:52:38 +000024 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Mike Wielgoszc6fa6bb2012-01-28 22:30:16 +000025
Mike Wielgoszb7e32812012-01-28 12:42:31 +000026 <application android:label="@string/app_name"
Mike Wielgosz4267ab42012-08-15 23:42:52 -040027 android:icon="@drawable/icon"
28 android:theme="@android:style/Theme.Holo" >
Mike Wielgoszb7e32812012-01-28 12:42:31 +000029
Mike Wielgoszc6fa6bb2012-01-28 22:30:16 +000030 <receiver android:name=".BootCompleteReceiver" android:enabled="true"
31 android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
32 <intent-filter>
33 <action android:name="android.intent.action.BOOT_COMPLETED" />
Mike Wielgoszc6fa6bb2012-01-28 22:30:16 +000034 </intent-filter>
35 </receiver>
36
Mike Wielgosz4267ab42012-08-15 23:42:52 -040037 <activity android:name=".AboutActivity" >
Mike Wielgoszb7e32812012-01-28 12:42:31 +000038 <intent-filter>
39 <action android:name="android.intent.action.MAIN" />
Mike Wielgosz4267ab42012-08-15 23:42:52 -040040 <action android:name="android.intent.action.ABOUT" />
Mike Wielgoszb7e32812012-01-28 12:42:31 +000041 </intent-filter>
42 </activity>
43 </application>
44</manifest>