• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.rs.rsov.test">
4    <application
5        android:largeHeap="true"
6        android:label="_RSoV_Test"
7        android:icon="@drawable/test_pattern">
8        <uses-library android:name="android.test.runner" />
9        <activity android:name="RSoVTest"
10                  android:screenOrientation="portrait">
11            <intent-filter>
12                <action android:name="android.intent.action.MAIN" />
13                <category android:name="android.intent.category.LAUNCHER" />
14            </intent-filter>
15        </activity>
16    </application>
17
18    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
19        android:targetPackage="com.android.rs.rsov.test"/>
20</manifest>
21