mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-25 02:12:16 -05:00
21 lines
606 B
XML
21 lines
606 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.yaaic.test"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<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" />
|
|
</application>
|
|
|
|
<instrumentation
|
|
android:name="android.test.InstrumentationTestRunner"
|
|
android:targetPackage="org.yaaic" />
|
|
|
|
</manifest> |