New [22.12.8] [star] doesn't work split screen when using custom launcher


Smadd

Members
Oct 19, 2022
46
20
MI 11 ultra when enabled custom launcher (microsoft, nova7, nova 8 etc) in recent app menu. when you click on app that support splitscreen it will hang recent app activity. But it correctly working for apps that have non resizable restriction.

On video i show that i make long press on kyivstar app (support only lock and settings) and translator (support all except split screen) - it open menu.
When i press on setting app (support split screen) - menu doesn't show and activity is hang.
On miui launcher work well. Seems like forbidden to use split screen.

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
---
Expecting:
With using custom launchers allow to make split screen.
Or dissable split button but resolve problem with hang activity, so i could open settings.
 
Last edited:
22.12.21, 23.1.3 bug still present.

After 1-2 days it begin works untill reboot. Seems like some service is stopped.
 
Last edited:
Workaround for miui 14:
1)switch to miui launcher
2)switch back to nova launcher

Or use tasker, script, magisk module:
Bash:
#!/system/bin/sh

cmd package set-home-activity "com.miui.home/com.miui.home.launcher.Launcher"
input keyevent KEYCODE_HOME
sleep 10
cmd package set-home-activity "com.teslacoilsw.launcher/com.teslacoilsw.launcher.NovaLauncher"
input keyevent KEYCODE_HOME
 
I am experiencing the same error with my 12t pro. An error that has not been resolved for a year :D I completely understood the reason, thanks to you I learned it. I also use Nova Launcher.
 
Workaround for miui 14:
1)switch to miui launcher
2)switch back to nova launcher

Or use tasker, script, magisk module:
Bash:
#!/system/bin/sh

cmd package set-home-activity "com.miui.home/com.miui.home.launcher.Launcher"
input keyevent KEYCODE_HOME
sleep 10
cmd package set-home-activity "com.teslacoilsw.launcher/com.teslacoilsw.launcher.NovaLauncher"
input keyevent KEYCODE_HOME

hi do you have a tutorial for this? i dont know how to do this in tasker .. :(
 
Workaround for miui 14:
1)switch to miui launcher
2)switch back to nova launcher

Or use tasker, script, magisk module:
Bash:
#!/system/bin/sh

cmd package set-home-activity "com.miui.home/com.miui.home.launcher.Launcher"
input keyevent KEYCODE_HOME
sleep 10
cmd package set-home-activity "com.teslacoilsw.launcher/com.teslacoilsw.launcher.NovaLauncher"
input keyevent KEYCODE_HOME
Thank you! Been looking everywhere for this. Just note that it has to be done with root. Here is tasker to do this and hide navigation buttons for use with gestures.

Code:
Project: Hide Nav Bar And Launcher
  
    Profiles
        Profile: Anon
            Event: Device Boot
      
      
      
        Enter Task: Fix Launcher
      
        A1: Run Shell [
             Command: #!/system/bin/sh
            
             cmd package set-home-activity "com.miui.home/com.miui.home.launcher.Launcher"
             input keyevent KEYCODE_HOME
             sleep 1
             cmd package set-home-activity "com.teslacoilsw.launcher/com.teslacoilsw.launcher.NovaLauncher"
             input keyevent KEYCODE_HOME
             Timeout (Seconds): 10
             Use Root: On
             Use Global Namespace: On ]
      
        A2: Custom Setting [
             Type: Global
             Name: force_fsg_nav_bar
             Value: 1 ]