Home | History | Annotate | Download | only in print
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <!--
      4     Copyright (C) 2014 The Android Open Source Project
      5 
      6     Licensed under the Apache License, Version 2.0 (the "License");
      7     you may not use this file except in compliance with the License.
      8     You may obtain a copy of the License at
      9 
     10     http://www.apache.org/licenses/LICENSE-2.0
     11 
     12     Unless required by applicable law or agreed to in writing, software
     13     distributed under the License is distributed on an "AS IS" BASIS,
     14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15     See the License for the specific language governing permissions and
     16     limitations under the License.
     17 -->
     18 
     19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     20         package="android.print.cts">
     21 
     22     <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
     23 
     24     <application android:allowBackup="false" >
     25 
     26         <uses-library android:name="android.test.runner"/>
     27 
     28         <activity android:name="android.print.cts.PrintDocumentActivity"/>
     29 
     30         <service
     31             android:name="android.print.cts.services.FirstPrintService"
     32             android:permission="android.permission.BIND_PRINT_SERVICE">
     33             <intent-filter>
     34                 <action android:name="android.printservice.PrintService" />
     35             </intent-filter>
     36             <meta-data
     37                android:name="android.printservice"
     38                android:resource="@xml/printservice">
     39             </meta-data>
     40         </service>
     41 
     42         <service
     43             android:name="android.print.cts.services.SecondPrintService"
     44             android:permission="android.permission.BIND_PRINT_SERVICE">
     45             <intent-filter>
     46                 <action android:name="android.printservice.PrintService" />
     47             </intent-filter>
     48             <meta-data
     49                android:name="android.printservice"
     50                android:resource="@xml/printservice">
     51             </meta-data>
     52         </service>
     53 
     54         <activity
     55             android:name="android.print.cts.services.SettingsActivity"
     56             android:exported="true">
     57         </activity>
     58 
     59         <activity
     60             android:name="android.print.cts.services.AddPrintersActivity"
     61             android:exported="true">
     62         </activity>
     63 
     64         <activity
     65             android:name="android.print.cts.services.CustomPrintOptionsActivity"
     66             android:permission="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"
     67             android:exported="true">
     68         </activity>
     69 
     70   </application>
     71 
     72   <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
     73           android:targetPackage="android.print.cts"
     74           android:label="Tests for the print APIs."/>
     75 
     76 </manifest>
     77