How to run SDL on Android emulator - CustomSDL/sdl_android_launcher GitHub Wiki

Preconditions

Note: now Android SDL supports 4 main architectures:

  • x86_64
  • x86
  • armeabi-v7a
  • arm64-v8a

So you may choose any compatible Android emulator for your testing purposes. All architectures are divided into 5 build flavors:

  • x86_64 - contains only x86_64 architecture
  • x86 - contains only x86 architecture
  • armeabi_v7a - contains only armeabi-v7a architecture
  • arm64_v8a - contains only arm64_v8a architecture
  • universal_build - contains all 4 architectures, but has a huge output size

Build flavors can be selected in Android Studio in the "Build Variants" tab usually located on the left bottom side of the window. Note, that Android studio won't allow you to deploy a selected flavor to the target device if it does not support the architecture provided by that flavor.

unsupported_arch

A good choice for Android emulators may be Pixel C API 28 x86_64. You also need to increase the size of the internal storage of this emulator up to 4 GB for a single architecture or about 8GB for the universal build. To do this open AVD Manager, choose Edit this AVD near the device of interest:

avd_menu

Then press Show Advanced Settings button:

advanced_settings

In opened window scroll to the "Memory and Storage" section and change the size of internal storage:

memory_and_storage

How to run SDL on emulator

  1. Once you have built the full SDL bundle, click Run in Android Studio. This will upload your bundle to your emulator and start the application.

  2. Once the application is opened, you will see two paths shown in the main activity, Cache and External:

main_activity

  1. Cache folder stores temporary application data and there is no need to copy there anything. The external folder stores the data related to registered applications like uploaded icons, assets, persistent files, etc. This folder should have public access because other applications present in the current Android system may need these files too.

  2. On the first start of the SDL launcher application, it will ask for access to external storage if it is mounted. You will notice the corresponding popup window:

ask_for_permissions

If you Deny access, then SDL falls back to the default path in its private folder and shows this path in the "External folder" field.

If you Allow access, then SDL creates the "SDL" folder in the root of external storage and uses it for writing applications data. This path will be displayed in the "External folder" field.

Note: Currently, SDL Launcher supports "External folder" only for Android 9 or below. There are more restrictions since Android 10 which does not allow to provide write access to external storage in the same way.

  1. At each start of the SDL launcher application, it will check the consistency of assets in the "Cache folder". In case of application notices that some of the asset files are missing in the Files folder, it will automatically extract them from the bundle and copy them into the right place. It may take some time to copy all the assets (especially on the first start) so you will see the corresponding popup with a spinner while this process is in progress.

initialize_assets

Once all asset files are copied, SDL is ready to go.

  1. Click Start SDL

After this return to Android Studio and open the Run or Logcat view at the bottom of the screen.

You should see SDL logs output after that:

run_log