| Joe Onorato | 6e93a3d | 2009-04-17 14:18:46 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| Yang Li | 35aa84b | 2009-05-18 18:29:05 -0700 | [diff] [blame] | 2 | <!-- Copyright (C) 2008-2009 The Android Open Source Project |
| Joe Onorato | 6e93a3d | 2009-04-17 14:18:46 -0700 | [diff] [blame] | 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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| Romain Guy | db567c3 | 2009-05-21 16:23:21 -0700 | [diff] [blame] | 17 | package="com.android.gesture.example"> |
| Romain Guy | b6d99b7 | 2009-05-21 15:05:50 -0700 | [diff] [blame] | 18 | |
| 19 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| San Mehat | 5a3a77d | 2009-06-01 09:25:28 -0700 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| Romain Guy | b6d99b7 | 2009-05-21 15:05:50 -0700 | [diff] [blame] | 21 | |
| 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 Onorato | 6e93a3d | 2009-04-17 14:18:46 -0700 | [diff] [blame] | 27 | <intent-filter> |
| 28 | <action android:name="android.intent.action.MAIN" /> |
| 29 | <category android:name="android.intent.category.LAUNCHER" /> |
| 30 | </intent-filter> |
| 31 | </activity> |
| Romain Guy | b6d99b7 | 2009-05-21 15:05:50 -0700 | [diff] [blame] | 32 | |
| Joe Onorato | 6e93a3d | 2009-04-17 14:18:46 -0700 | [diff] [blame] | 33 | <activity android:name="com.android.gesture.example.GestureLibViewer"/> |
| Romain Guy | b6d99b7 | 2009-05-21 15:05:50 -0700 | [diff] [blame] | 34 | |
| 35 | <activity |
| 36 | android:name="com.android.gesture.example.ContactListGestureOverlay" |
| 37 | android:label="@string/overlay_name"> |
| Yang Li | 35aa84b | 2009-05-18 18:29:05 -0700 | [diff] [blame] | 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.MAIN" /> |
| 40 | <category android:name="android.intent.category.LAUNCHER" /> |
| 41 | </intent-filter> |
| 42 | </activity> |
| Romain Guy | b6d99b7 | 2009-05-21 15:05:50 -0700 | [diff] [blame] | 43 | |
| Joe Onorato | 6e93a3d | 2009-04-17 14:18:46 -0700 | [diff] [blame] | 44 | </application> |
| 45 | </manifest> |