summaryrefslogtreecommitdiffstats
path: root/tests/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/AndroidManifest.xml')
-rw-r--r--tests/AndroidManifest.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
index 408178e..151bd07 100644
--- a/tests/AndroidManifest.xml
+++ b/tests/AndroidManifest.xml
@@ -4,9 +4,17 @@
<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.test.InstrumentationTestRunner"
+ android:name="android.support.test.runner.AndroidJUnitRunner"
android:targetPackage="com.cyngn.audiofx" />
</manifest>