Files
frameworks_base/graphics/tests/perftests/AndroidManifest.xml
Teng-Hui Zhu 6b62d73517 Initial setup Java level graphics perf test
Change-Id: I6c584faa125bfb70923759974536503dbbd717de
2016-05-26 11:14:39 -07:00

22 lines
850 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.frameworks.perftests">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application>
<uses-library android:name="android.test.runner" />
<activity android:name="android.graphics.perftests.StubActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="android.test.runner" />
</application>
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.android.frameworks.perftests"/>
</manifest>