• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/Home/AndroidManifest.xml
4**
5** Copyright 2006, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<!-- Declare the contents of this Android application.  The namespace
22     attribute brings in the Android platform namespace, and the package
23     supplies a unique name for the application.  When writing your
24     own application, the package name must be changed from "com.example.*"
25     to come from a domain that you own or have control over. -->
26<manifest xmlns:android="http://schemas.android.com/apk/res/android"
27		package="com.example.android.home">
28    <uses-permission android:name="android.permission.CALL_PHONE"/>
29    <uses-permission android:name="android.permission.GET_TASKS"/>
30    <uses-permission android:name="android.permission.READ_CONTACTS"/>
31    <uses-permission android:name="android.permission.SET_WALLPAPER" />
32    <uses-permission android:name="android.permission.INTERNET" />
33    <uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/>
34
35    <application android:persistent="true"
36          android:label="@string/home_title"
37          android:icon="@drawable/ic_launcher_home">
38
39        <activity android:name="Home"
40                android:theme="@style/Theme"
41                android:launchMode="singleInstance"
42                android:stateNotNeeded="true">
43            <intent-filter>
44                <action android:name="android.intent.action.MAIN" />
45                <category android:name="android.intent.category.HOME"/>
46                <category android:name="android.intent.category.DEFAULT" />
47            </intent-filter>
48        </activity>
49
50        <activity android:name="Wallpaper"
51                android:label="Wallpaper"
52                android:icon="@drawable/bg_android_icon">
53            <intent-filter>
54                <action android:name="android.intent.action.SET_WALLPAPER" />
55                <category android:name="android.intent.category.DEFAULT" />
56            </intent-filter>
57        </activity>
58
59    </application>
60</manifest>
61