Adds TileBenchmark app, which loads pages in webview and scrolls through them automatically, measuring rendering and allocation information. Change-Id: Ieaf5bbcec604c99aaf16822915e58bfc495011ec
21 lines
916 B
XML
21 lines
916 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" package="com.test.tilebenchmark">
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<application android:icon="@drawable/icon"
|
|
android:label="@string/app_name"
|
|
android:hardwareAccelerated="true">
|
|
<activity android:name=".ProfileActivity"
|
|
android:label="@string/profile_activity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".PlaybackActivity"
|
|
android:label="@string/playback_activity">
|
|
</activity>
|
|
</application>
|
|
</manifest>
|