AndroidManifest.xml 709 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2020 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. <!-- This manifest is required for tests using
  7. androidx.test.core.app.ActivityScenario to work.
  8. -->
  9. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  10. package="org.chromium.test.ui">
  11. <!-- Value used by ActivityAndroidPermissionDelegateTest -->
  12. <uses-permission android:name="android.permission.INTERNET"/>
  13. <application android:theme="@style/Theme.AppCompat.Light">
  14. <activity android:name="org.chromium.ui.base.TestActivity"/>
  15. </application>
  16. </manifest>