Hide `Open in pop-up view` option on Android

On my phone (Galaxy Note 10 Plus), almost all games are not showing this option when I press on its icon. My game and some games (for example Flames: Your Stories to Tell - Apps on Google Play) which created by Defold are still showing it.

My question is how to hide it, I see that this game is not having it.

1 Like

Hmm, probably some setting in the android manifest or similar. Not sure really. @AGulev do you know?

1 Like

Yes,
Just

  1. copy AndroidManifest.xml from builtins
  2. Paste it into your project folder
  3. Open game.project → Android section
  4. Specify your manifest instead of default one in builtins folder
  5. Open new AndroidManifest.xml
  6. Add the following line:
android:resizeableActivity="false"
4 Likes

Thanks! It works!

1 Like