blob: 462064233839c38dfca3bfbcc6aa355e08be6741 [file] [log] [blame]
David Hu2afdfd62012-12-17 19:38:03 -08001<?xml version="1.0" encoding="utf-8"?>
Brett Chabot4ce3fb82012-12-18 15:29:44 -08002<!--
3 Copyright (C) 2012 The Android Open Source Project
David Hu2afdfd62012-12-17 19:38:03 -08004
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Brett Chabot4ce3fb82012-12-18 15:29:44 -080019 package="com.android.tradefed.utils" >
David Hu2afdfd62012-12-17 19:38:03 -080020
21 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
22
23 <application>
Brett Chabot4ce3fb82012-12-18 15:29:44 -080024 <receiver android:name="com.android.tradefed.utils.DismissKeyguardIntentReceiver" >
David Hu2afdfd62012-12-17 19:38:03 -080025 <intent-filter>
26 <action android:name="com.android.tradefed.utils.DISMISS_KEYGUARD" />
27 </intent-filter>
28 </receiver>
29
Brett Chabot4ce3fb82012-12-18 15:29:44 -080030 <service android:name="com.android.tradefed.utils.DismissKeyguardService" />
31
32 <activity
33 android:name="com.android.tradefed.utils.MainActivity"
34 android:label="@string/title_activity_main" >
35 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.DEFAULT" />
38 <category android:name="android.intent.category.LAUNCHER" />
39 </intent-filter>
40 </activity>
David Hu2afdfd62012-12-17 19:38:03 -080041 </application>
42
Brett Chabot4ce3fb82012-12-18 15:29:44 -080043</manifest>