blob: dc3b45fadfc50dca29a7828486546bd56152304c [file] [log] [blame]
Alexandre Savardb765bb32012-08-29 15:05:31 -04001<?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.savoirfairelinux.sflphone.tests"
5 android:versionCode="1"
6 android:versionName="1.0">
7 <!-- We add an application tag here just so that we can indicate that
8 this package needs to link against the android.test library,
9 which is needed when building test cases. -->
Alexandre Savardb3feccc2012-08-29 16:26:20 -040010
11 <uses-sdk
12 android:minSdkVersion="13"
13 android:targetSdkVersion="15" />
14
Alexandre Savardb765bb32012-08-29 15:05:31 -040015 <application>
16 <uses-library android:name="android.test.runner" />
17 </application>
18 <!--
19 This declares that this application uses the instrumentation test runner targeting
20 the package of com.savoirfairelinux.sflphone. To run the tests use the command:
21 "adb shell am instrument -w com.savoirfairelinux.sflphone.tests/android.test.InstrumentationTestRunner"
22 -->
23 <instrumentation android:name="android.test.InstrumentationTestRunner"
24 android:targetPackage="com.savoirfairelinux.sflphone"
25 android:label="Tests for com.savoirfairelinux.sflphone"/>
26</manifest>