1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 android:versionCode="1" 4 android:versionName="1.0" package="com.test.tilebenchmark"> 5 <uses-permission android:name="android.permission.INTERNET"/> 6 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 7 <application android:icon="@drawable/icon" 8 android:label="@string/app_name" 9 android:hardwareAccelerated="true"> 10 <activity android:name=".ProfileActivity" 11 android:label="@string/profile_activity" 12 android:theme="@android:style/Theme.Holo.NoActionBar"> 13 <intent-filter> 14 <action android:name="android.intent.action.MAIN" /> 15 <category android:name="android.intent.category.LAUNCHER" /> 16 </intent-filter> 17 </activity> 18 <activity android:name=".PlaybackActivity" 19 android:label="@string/playback_activity" 20 android:theme="@android:style/Theme.Holo.NoActionBar"> 21 </activity> 22 <uses-library android:name="android.test.runner" /> 23 </application> 24 <instrumentation android:name="android.test.InstrumentationTestRunner" 25 android:targetPackage="com.test.tilebenchmark" 26 android:label="Tests for WebView Tiles."/> 27 </manifest> 28