25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
{% extends "chrome/android/java/AndroidManifest.xml" %}
|
|
|
|
# Copyright 2020 The Brave Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{% block application_label %}BravePublicTest{% endblock %}
|
|
|
|
{% block extra_root_definitions %}
|
|
<instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUnitRunner"
|
|
android:targetPackage="{{manifest_package}}"
|
|
android:label="Tests for {{manifest_package}}"/>
|
|
{% endblock %}
|
|
|
|
{% block extra_uses_permissions %}
|
|
<uses-permission android:name="android.permission.SET_ANIMATION_SCALE"/>
|
|
{% endblock %}
|
|
|
|
{% block extra_application_definitions_for_test %}
|
|
<activity android:name="org.chromium.ui.test.util.BlankUiTestActivity"
|
|
android:theme="@style/Theme.Chromium.Activity"
|
|
android:exported="true"
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize|uiMode|density"/>
|
|
{% endblock %}
|