blob: b8a13f6a7368bfd3b2e5f85b35598f2ace2b47c1 [file] [log] [blame]
Joe Onorato6e93a3d2009-04-17 14:18:46 -07001<?xml version="1.0" encoding="utf-8"?>
Yang Li35aa84b2009-05-18 18:29:05 -07002<!-- Copyright (C) 2008-2009 The Android Open Source Project
Joe Onorato6e93a3d2009-04-17 14:18:46 -07003
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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guydb567c32009-05-21 16:23:21 -070017 package="com.android.gesture.example">
Romain Guyb6d99b72009-05-21 15:05:50 -070018
19 <uses-permission android:name="android.permission.READ_CONTACTS" />
San Mehat5a3a77d2009-06-01 09:25:28 -070020 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Romain Guyb6d99b72009-05-21 15:05:50 -070021
22 <application android:icon="@drawable/icon" android:label="@string/app_name">
23
24 <activity
25 android:name="com.android.gesture.example.GestureEntry"
26 android:label="@string/app_name">
Joe Onorato6e93a3d2009-04-17 14:18:46 -070027 <intent-filter>
28 <action android:name="android.intent.action.MAIN" />
29 <category android:name="android.intent.category.LAUNCHER" />
30 </intent-filter>
31 </activity>
Romain Guyb6d99b72009-05-21 15:05:50 -070032
Joe Onorato6e93a3d2009-04-17 14:18:46 -070033 <activity android:name="com.android.gesture.example.GestureLibViewer"/>
Romain Guyb6d99b72009-05-21 15:05:50 -070034
35 <activity
36 android:name="com.android.gesture.example.ContactListGestureOverlay"
37 android:label="@string/overlay_name">
Yang Li35aa84b2009-05-18 18:29:05 -070038 <intent-filter>
39 <action android:name="android.intent.action.MAIN" />
40 <category android:name="android.intent.category.LAUNCHER" />
41 </intent-filter>
42 </activity>
Romain Guyb6d99b72009-05-21 15:05:50 -070043
Joe Onorato6e93a3d2009-04-17 14:18:46 -070044 </application>
45</manifest>