Two important questions

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Rob1980

Hi everyone! Today I have two important questions to ask you.
I’ve just completed my first game with Godot. But now I am faced with a couple of issues to solve:

  1. my game contains some videos, so to view them I had to export the exe file inside the game development folder. What I wonder is: if I had to upload my game in a game site, what would happen? Would the videos be seen or not?
  2. exporting the game in apk file, the app does not work, and I know that unfortunately this is a fairly common issue in Godot. How could I solve it?

Thanks for the answers.

:bust_in_silhouette: Reply From: Rob1980

Anybody? :frowning:

:bust_in_silhouette: Reply From: Calinou
  1. You can add videos to the non-resource export filter in the export preset, as videos aren’t considered to be “imported” by Godot (since they’re loaded directly). This should cover all video formats supported by Godot:
    *.ogg, *.ogv, *.webm (some Ogg Theora videos have an .ogg extension)

  2. Do you get any error messages when trying to install/run the APK on Android? Make sure to follow the instructions to generate a keystore for development purposes. If you’re exporting in release mode, you need to configure the path to the keystore in the export preset, not in the Editor Settings.

Thank you so much! :wink:

Rob1980 | 2019-03-07 16:53