Files
openclaw/apps/android/app/src/debug/AndroidManifest.xml
2026-05-25 09:01:06 +05:30

15 lines
475 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<receiver
android:name=".VoiceE2eReceiver"
android:exported="true">
<intent-filter>
<action android:name="ai.openclaw.app.debug.RUN_VOICE_E2E" />
</intent-filter>
</receiver>
<service
android:name=".VoiceE2eService"
android:exported="false" />
</application>
</manifest>