• Home
  • History
  • Annotate
  • 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.test">
4    <application
5        android:largeHeap="true"
6        android:label="_RS_Test"
7        android:icon="@drawable/test_pattern">
8        <uses-library android:name="android.test.runner" />
9        <activity android:name="RSTest"
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        <activity android:name="RSContinuousTestActivity" />
17    </application>
18
19    <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
20        android:targetPackage="com.android.rs.test"/>
21</manifest>
22