AndroidManifest.xml 940 B

1234567891011121314151617181920212223
  1. <!--
  2. * Copyright 2022 The Chromium Authors. All rights reserved.
  3. * Use of this source code is governed by a BSD-style license that can be
  4. * found in the LICENSE file.
  5. -->
  6. <manifest
  7. xmlns:android="http://schemas.android.com/apk/res/android"
  8. package="org.chromium.webview_js_sandbox_test.test">
  9. <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
  10. <!-- We add an application tag here just so that we can indicate that this
  11. package needs to link against the android.test library, which is
  12. needed when building test cases. -->
  13. <application>
  14. <uses-library android:name="android.test.runner" />
  15. </application>
  16. <instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUnitRunner"
  17. android:targetPackage="org.chromium.webview_js_sandbox_test.test"
  18. android:label="Tests for org.chromium.webview_js_sandbox_test.test"/>
  19. </manifest>