AndroidManifest.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.datalibrary.test" >
  4. <uses-sdk
  5. android:minSdkVersion="22"
  6. android:targetSdkVersion="34" />
  7. <instrumentation
  8. android:name="android.support.test.runner.AndroidJUnitRunner"
  9. android:functionalTest="false"
  10. android:handleProfiling="false"
  11. android:label="Tests for com.example.datalibrary.test"
  12. android:targetPackage="com.example.datalibrary.test" />
  13. <queries>
  14. <package android:name="androidx.test.orchestrator" />
  15. <package android:name="androidx.test.services" />
  16. <package android:name="com.google.android.apps.common.testing.services" />
  17. </queries>
  18. <uses-permission android:name="android.permission.REORDER_TASKS" />
  19. <permission
  20. android:name="com.example.datalibrary.test.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
  21. android:protectionLevel="signature" />
  22. <uses-permission android:name="com.example.datalibrary.test.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
  23. <application
  24. android:allowBackup="false"
  25. android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  26. android:debuggable="true"
  27. android:extractNativeLibs="true"
  28. android:label="@string/app_name"
  29. android:supportsRtl="true" >
  30. <uses-library android:name="android.test.runner" />
  31. <activity
  32. android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity"
  33. android:exported="true"
  34. android:theme="@style/WhiteBackgroundTheme" >
  35. <intent-filter android:priority="-100" >
  36. <category android:name="android.intent.category.LAUNCHER" />
  37. </intent-filter>
  38. </activity>
  39. <activity
  40. android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity"
  41. android:exported="true"
  42. android:theme="@style/WhiteBackgroundTheme" >
  43. <intent-filter android:priority="-100" >
  44. <category android:name="android.intent.category.LAUNCHER" />
  45. </intent-filter>
  46. </activity>
  47. <activity
  48. android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity"
  49. android:exported="true"
  50. android:theme="@style/WhiteBackgroundDialogTheme" >
  51. <intent-filter android:priority="-100" >
  52. <category android:name="android.intent.category.LAUNCHER" />
  53. </intent-filter>
  54. </activity>
  55. <provider
  56. android:name="androidx.startup.InitializationProvider"
  57. android:authorities="com.example.datalibrary.test.androidx-startup"
  58. android:exported="false" >
  59. <meta-data
  60. android:name="androidx.emoji2.text.EmojiCompatInitializer"
  61. android:value="androidx.startup" />
  62. <meta-data
  63. android:name="androidx.lifecycle.ProcessLifecycleInitializer"
  64. android:value="androidx.startup" />
  65. <meta-data
  66. android:name="androidx.profileinstaller.ProfileInstallerInitializer"
  67. android:value="androidx.startup" />
  68. </provider>
  69. <receiver
  70. android:name="androidx.profileinstaller.ProfileInstallReceiver"
  71. android:directBootAware="false"
  72. android:enabled="true"
  73. android:exported="true"
  74. android:permission="android.permission.DUMP" >
  75. <intent-filter>
  76. <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" />
  77. </intent-filter>
  78. <intent-filter>
  79. <action android:name="androidx.profileinstaller.action.SKIP_FILE" />
  80. </intent-filter>
  81. <intent-filter>
  82. <action android:name="androidx.profileinstaller.action.SAVE_PROFILE" />
  83. </intent-filter>
  84. <intent-filter>
  85. <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" />
  86. </intent-filter>
  87. </receiver>
  88. </application>
  89. </manifest>