2010-11-07 08:35:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-11-06 21:00:36 +01:00
|
|
|
package="org.yaaic.test"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
2010-11-07 08:35:45 +01:00
|
|
|
|
2012-11-06 21:00:36 +01:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="7"
|
|
|
|
android:targetSdkVersion="16" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
<uses-library android:name="android.test.runner" />
|
2010-11-07 08:35:45 +01:00
|
|
|
</application>
|
2012-11-06 21:00:36 +01:00
|
|
|
|
|
|
|
<instrumentation
|
|
|
|
android:name="android.test.InstrumentationTestRunner"
|
|
|
|
android:targetPackage="org.yaaic" />
|
|
|
|
|
|
|
|
</manifest>
|