Home | History | Annotate | Download | only in TileBenchmark
      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     <application android:icon="@drawable/icon"
      7                  android:label="@string/app_name"
      8                  android:hardwareAccelerated="true">
      9         <activity android:name=".ProfileActivity"
     10                   android:label="@string/profile_activity"
     11                   android:theme="@android:style/Theme.Holo.NoActionBar">
     12             <intent-filter>
     13                 <action android:name="android.intent.action.MAIN" />
     14                 <category android:name="android.intent.category.LAUNCHER" />
     15             </intent-filter>
     16         </activity>
     17         <activity android:name=".PlaybackActivity"
     18                   android:label="@string/playback_activity"
     19                   android:theme="@android:style/Theme.Holo.NoActionBar">
     20         </activity>
     21     </application>
     22 </manifest>
     23