fix: Add OpenClaw component registrations to AndroidManifest

- Register OpenClawPairingActivity
- Register OpenClawService
- Enables pairing and AI collaboration features
This commit is contained in:
Agbara (OpenClaw Agent) 2026-04-12 18:12:30 +08:00
parent 2481ff5073
commit d2abdb69cf

View File

@ -103,6 +103,19 @@
</intent-filter>
</activity>
<!-- OpenClaw Pairing Activity -->
<activity
android:name=".features.openclaw.OpenClawPairingActivity"
android:exported="false"
android:label="OpenClaw Pairing"
android:theme="@style/Theme.BitchatAndroid" />
<!-- OpenClaw Service for AI-human secure collaboration -->
<service
android:name=".features.openclaw.OpenClawService"
android:enabled="true"
android:exported="false" />
<!-- Persistent foreground service to run the mesh in background -->
<service
android:name=".service.MeshForegroundService"