AndroidManifest.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2016 The Android Open Source Project
  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. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  15. package="com.android.printspooler.outofprocess.tests">
  16. <application>
  17. <uses-library android:name="android.test.runner" />
  18. <activity
  19. android:name="android.print.test.PrintDocumentActivity"
  20. android:theme="@style/NoAnimation" />
  21. <service
  22. android:name="android.print.test.services.FirstPrintService"
  23. android:permission="android.permission.BIND_PRINT_SERVICE">
  24. <intent-filter>
  25. <action android:name="android.printservice.PrintService" />
  26. </intent-filter>
  27. <meta-data
  28. android:name="android.printservice"
  29. android:resource="@xml/printservice">
  30. </meta-data>
  31. </service>
  32. <activity
  33. android:name="android.print.test.services.SettingsActivity"
  34. android:permission="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"
  35. android:theme="@style/NoAnimation"
  36. android:exported="true">
  37. </activity>
  38. <activity
  39. android:name="android.print.test.services.AddPrintersActivity"
  40. android:theme="@style/NoAnimation"
  41. android:exported="true">
  42. </activity>
  43. </application>
  44. <!-- This runs in its own process, hence it instruments itself -->
  45. <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
  46. android:targetPackage="com.android.printspooler.outofprocess.tests"
  47. android:label="PrintSpooler Out of Process Test Cases">
  48. </instrumentation>
  49. </manifest>