android_mt6572_jiabo/packages/apps/AudioFX/tests/AndroidManifest.xml
2025-09-05 16:56:03 +08:00

20 lines
782 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.cyanogenmod.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="org.cyanogenmod.audiofx" />
</manifest>