feat(android): Add voice interaction service for app launch

This commit is contained in:
cogwheel0
2025-11-21 19:16:51 +05:30
parent 4166862d08
commit 20e57e9f88
5 changed files with 64 additions and 8 deletions

View File

@@ -32,6 +32,18 @@
android:allowBackup="false"
android:fullBackupContent="false"
android:usesCleartextTraffic="true">
<service
android:name=".ConduitVoiceInteractionSessionService"
android:permission="android.permission.BIND_VOICE_INTERACTION"
android:exported="true">
<meta-data
android:name="android.voice_interaction"
android:resource="@xml/voice_interaction_service" />
<intent-filter>
<action android:name="android.service.voice.VoiceInteractionService" />
</intent-filter>
</service>
<activity
android:name=".MainActivity"
android:exported="true"