mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-03 22:01:40 +00:00
* fix(android): keep welcome action reachable with large text * test(android): isolate Compose host theme * fix(android): keep gateway setup usable with large text Co-authored-by: NianJiuZst <180004567+NianJiuZst@users.noreply.github.com> --------- Co-authored-by: NianJiuZst <180004567+NianJiuZst@users.noreply.github.com> Co-authored-by: Peter Steinberger <steipete@gmail.com>
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
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>
|
|
<!-- Compose/Robolectric needs a generic host; the app theme keeps AppCompat dialog tests valid. -->
|
|
<activity
|
|
android:name="androidx.activity.ComponentActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.OpenClawNode" />
|
|
<activity
|
|
android:name=".ui.CanvasLifecycleTestActivity"
|
|
android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize|uiMode|density|keyboard|keyboardHidden|navigation"
|
|
android:exported="false"
|
|
android:theme="@android:style/Theme.Material.Light.NoActionBar" />
|
|
<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>
|