* tag the module as 'tests' so the apk gets includes in test build * merge the instrumentation into TileBenchmark app and eliminate the test apk entirely * changed the default test suite to 'alexa25_2011' which is a suite of pages based on top 25 news sites from alexa, includes primarily english sites, and 3 CJK sites Change-Id: Icd40a70b560bfd7c521adf8ad4b1068483698103
27 lines
1.3 KiB
XML
27 lines
1.3 KiB
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"
|
|
android:theme="@android:style/Theme.Holo.NoActionBar">
|
|
<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"
|
|
android:theme="@android:style/Theme.Holo.NoActionBar">
|
|
</activity>
|
|
<uses-library android:name="android.test.runner" />
|
|
</application>
|
|
<instrumentation android:name="android.test.InstrumentationTestRunner"
|
|
android:targetPackage="com.test.tilebenchmark"
|
|
android:label="Tests for WebView Tiles."/>
|
|
</manifest>
|