A module which applies a "true" value across all installed apps to enable multi-window display mode without using the workaround of the Developer Options toggle, which would also remove the unsightly system message that pops up when using split screen with "incompatible" apps, noting, "This app may not work with Multi window."
Per https://developer.android.com/guide/topics/ui/multi-window
Thoughts?
Per https://developer.android.com/guide/topics/ui/multi-window
Effectively, this is "editing" the APK's manifest to declare it resizeable without needing to do it manually one by one, and avoids the signing issues that may come with doing this on a system/app level.Set this attribute in your manifest's <activity> or <application> element to enable or disable multi-window display:
android:resizeableActivity=["true" | "false"]
If this attribute is set to true, the activity can be launched in split-screen and freeform modes. If the attribute is set to false, the activity does not support multi-window mode. If this value is false, and the user attempts to launch the activity in multi-window mode, the activity takes over the full screen.
Thoughts?