summaryrefslogtreecommitdiffstats
path: root/tests/AndroidManifest.xml
blob: 151bd073f102d20bef11bc0fc66f2e6f416614f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.cyngn.audiofx.tests">

    <application android:label="@string/app_name">
        <uses-library android:name="android.test.runner" />

        <activity android:name=".DebugActivity"
                    android:label="AudioFX Debug">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

    <instrumentation
            android:name="android.support.test.runner.AndroidJUnitRunner"
            android:targetPackage="com.cyngn.audiofx" />
</manifest>