mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-20 17:41:33 -06:00
5e342c774d
* improve android overview control surface * fix android lint gates * fix android voice e2e debug broadcast * harden android voice e2e receiver * fix(android): clarify Talk entry copy --------- Co-authored-by: joshavant <830519+joshavant@users.noreply.github.com>
23 lines
763 B
XML
23 lines
763 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<permission
|
|
android:name="${applicationId}.permission.RUN_VOICE_E2E"
|
|
android:protectionLevel="signature" />
|
|
|
|
<uses-permission android:name="${applicationId}.permission.RUN_VOICE_E2E" />
|
|
|
|
<application>
|
|
<receiver
|
|
android:name=".VoiceE2eReceiver"
|
|
android:permission="${applicationId}.permission.RUN_VOICE_E2E"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="ai.openclaw.app.debug.RUN_VOICE_E2E" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<service
|
|
android:name=".VoiceE2eService"
|
|
android:exported="false" />
|
|
</application>
|
|
</manifest>
|