Home | History | Annotate | Download | only in tests
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
      3 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      4           package="com.bumptech.glide.tests"
      5           android:versionCode="1"
      6           android:versionName="1.0">
      7   <uses-sdk android:minSdkVersion="8" />
      8   <!-- We add an application tag here just so that we can indicate that
      9        this package needs to link against the android.test library,
     10        which is needed when building test cases. -->
     11   <application>
     12     <uses-library android:name="android.test.runner"/>
     13   </application>
     14   <!--
     15   This declares that this application uses the instrumentation test runner targeting
     16   the package of com.bumptech.glide.  To run the tests use the command:
     17   "adb shell am instrument -w com.bumptech.glide.tests/android.test.InstrumentationTestRunner"
     18   -->
     19   <instrumentation android:name="android.test.InstrumentationTestRunner"
     20                    android:targetPackage="com.bumptech.glide"
     21                    android:label="Tests for com.bumptech.glide"/>
     22 </manifest>
     23