1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-24 15:26:15 +00:00

Fix splash screen loading on Android

This commit is contained in:
Fredia Huya-Kouadio
2020-08-19 15:38:50 -07:00
parent 422c279fcb
commit 91a1e4c9ee
7 changed files with 116 additions and 6 deletions

View File

@@ -32,9 +32,17 @@ package com.godot.game;
import org.godotengine.godot.FullScreenGodotApp;
import android.os.Bundle;
/**
* Template activity for Godot Android custom builds.
* Feel free to extend and modify this class for your custom logic.
*/
public class GodotApp extends FullScreenGodotApp {
@Override
public void onCreate(Bundle savedInstanceState) {
setTheme(R.style.GodotAppMainTheme);
super.onCreate(savedInstanceState);
}
}