fcitx5-android/lib/plugin-base/src/debug/AndroidManifest.xml
Rocka 49d8807101
Prevent res/xml/plugin.xml being removed from release build
reference `@xml/plugin` in AndroidManifest.xml of :lib:plugin_base
2026-04-23 23:32:19 +08:00

35 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<queries tools:node="remove">
<package android:name="org.fcitx.fcitx5.android" />
</queries>
<queries>
<package android:name="org.fcitx.fcitx5.android.debug" />
</queries>
<application>
<meta-data
android:name="org.fcitx.fcitx5.android.plugin.METADATA"
tools:node="remove" />
<meta-data
android:name="org.fcitx.fcitx5.android.debug.plugin.METADATA"
android:resource="@xml/plugin" />
<activity
android:name=".AboutActivity"
android:directBootAware="true"
android:exported="true"
android:theme="@style/DeviceSettingsTheme"
tools:targetApi="24">
<intent-filter tools:node="remove">
<action android:name="org.fcitx.fcitx5.android.plugin.MANIFEST" />
</intent-filter>
<intent-filter>
<action android:name="org.fcitx.fcitx5.android.debug.plugin.MANIFEST" />
</intent-filter>
</activity>
</application>
</manifest>