Peter_N_K
(Peter N K)
April 10, 2019, 8:16pm
1
I migrated my game (The Big SokoBang) from 4.19 to 4.22.
The unpleasant surprise is that now Exit does not work - I am using it on Exit button with blueprint “Quit Game”
Any ideas what to do ?
PS: I tried both true and false values for “Ignore Platform Restrictions” - none works
paranoio
(paranoio)
April 12, 2019, 12:29am
2
This is happening to my app too !
Peter_N_K
(Peter N K)
April 18, 2019, 5:04am
3
after 2 week affords to solve the problem … there is no solution. How can I ask the engine developers?
Peter_N_K
(Peter N K)
April 24, 2019, 4:40pm
4
Anyone not having this problem in Android+UE 4.22 ?
Mariyan
(Mariyan)
April 25, 2019, 8:02pm
5
Yea, i would like to know too, if someone has explanation, is this in purpose?
I’ve been having the same Issue on 4.22 and just did a build with the latest update (4.22.1) and the quit game function is still broken. Pretty frustrating.
Mariyan
(Mariyan)
May 18, 2019, 10:55am
7
Unfortunately the fix is not included in 4.22.2
I hope 4.22.3 comes soon
Vanrian
(Vanrian)
July 1, 2019, 4:26am
10
Yeah still don’t work at 4.22.3
Flakky
(Alexander Blintsov)
July 17, 2019, 10:44am
11
Try using timer to call QuitGame in 4.22. Works for us.
Dr_J0nes
(Dr_J0nes)
July 18, 2019, 8:10pm
12
I had the same Problem. Make sure you tick/enable “Ignore Platform Restrictions” in the “Quit Game” Node. That made it work for me.
Ignore Platform Restrictions is disabled in shipping builds, thus not a good solution.
hdelattre
(hdelattre)
July 20, 2019, 3:41am
14
I succeeded in using FPlatformMisc::RequestExit(false) in 4.22.3. If you need a blueprint node you’ll need to a create a blueprint library c++ class and add this function
UFUNCTION(BlueprintCallable, Category = "Game")
static void MyQuitGame(bool bForce)
{
FPlatformMisc::RequestExit(bForce);
};
and then you can use the MyQuitGame node in BP.
Force quit skips things like saving changes to the config and other teardown handling so generally you don’t want to force (though I use it when enforcing entitlement checks).
motorsep
(motorsep)
October 1, 2019, 2:09pm
15
Soo, no one bothered to report this bug to the official bug report system ?!
motorsep
(motorsep)
October 1, 2019, 3:50pm
16
I just submitted this bug to Epic.
ADL67
(ADL67)
March 7, 2022, 2:46pm
18
Hi,
I have the same problem on 4.27.2 too!!!
Any solution or is necessary report it to Epic?
Thank you
ADL