Files
Kvaesitso/docs/docs/developer-guide/plugins/settings.md
2024-02-21 12:15:44 +01:00

526 B

Plugin Settings

To add a plugin settings activity, create an activity with the following intent filter:

<activity
    android:name=".SettingsActivity"
    android:exported="true">

    <intent-filter>
        <action android:name="de.mm20.launcher2.action.PLUGIN_SETTINGS" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

Users can launch this activity by pressing the settings on the plugin settings screen.