mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 03:16:23 +00:00
15 lines
475 B
XML
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>
|