Home | History | Annotate | Download | only in CanvasCompare
      1 <!-- Copyright (C) 2012 The Android Open Source Project
      2 
      3      Licensed under the Apache License, Version 2.0 (the "License");
      4      you may not use this file except in compliance with the License.
      5      You may obtain a copy of the License at
      6 
      7           http://www.apache.org/licenses/LICENSE-2.0
      8 
      9      Unless required by applicable law or agreed to in writing, software
     10      distributed under the License is distributed on an "AS IS" BASIS,
     11      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12      See the License for the specific language governing permissions and
     13      limitations under the License.
     14 -->
     15 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     16     package="com.android.test.hwuicompare" >
     17 
     18     <uses-permission android:name="android.permission.INTERNET" />
     19     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
     20     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
     21 
     22     <application
     23         android:label="@string/app_name"
     24         android:theme="@android:style/Theme.Holo.Light.NoActionBar">
     25         <activity
     26             android:name="AutomaticActivity"
     27             android:label="CanvasAutoCompare" >
     28             <intent-filter>
     29                 <action android:name="android.intent.action.MAIN" />
     30                 <category android:name="android.intent.category.LAUNCHER" />
     31             </intent-filter>
     32         </activity>
     33         <activity
     34             android:name="ManualActivity"
     35             android:label="CanvasManualCompare" >
     36             <intent-filter>
     37                 <action android:name="android.intent.action.MAIN" />
     38                 <category android:name="android.intent.category.LAUNCHER" />
     39             </intent-filter>
     40         </activity>
     41         <uses-library android:name="android.test.runner" />
     42     </application>
     43     <instrumentation
     44         android:name="android.test.InstrumentationTestRunner"
     45         android:targetPackage="com.android.test.hwuicompare"
     46         android:label="HW/SW Canvas comparison tool."/>
     47 
     48 </manifest>
     49