2011-11-12 20:44:09 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.petero.droidfish.test"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
|
|
|
|
2015-12-21 22:27:43 +01:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="16"
|
|
|
|
android:targetSdkVersion="23" />
|
2011-11-12 20:44:09 +01:00
|
|
|
|
|
|
|
<instrumentation
|
|
|
|
android:name="android.test.InstrumentationTestRunner"
|
|
|
|
android:targetPackage="org.petero.droidfish" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
2014-10-12 02:21:10 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:allowBackup="true">
|
2011-11-12 20:44:09 +01:00
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
</application>
|
|
|
|
|
2014-10-12 02:21:10 +02:00
|
|
|
</manifest>
|