1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-02 16:48:55 +00:00

Enable Gradle builds on the Android editor via a dedicated build app

Co-authored-by: Logan Lang <devloglogan@gmail.com>
This commit is contained in:
David Snopek
2025-03-13 08:04:15 -05:00
parent 3a97723ff2
commit 5593a0b2b2
16 changed files with 928 additions and 19 deletions

View File

@@ -60,6 +60,8 @@ struct LauncherIcon {
int dimensions = 0;
};
class AndroidEditorGradleRunner;
class EditorExportPlatformAndroid : public EditorExportPlatform {
GDCLASS(EditorExportPlatformAndroid, EditorExportPlatform);
@@ -106,6 +108,8 @@ class EditorExportPlatformAndroid : public EditorExportPlatform {
static void _check_for_changes_poll_thread(void *ud);
void _update_preset_status();
#else
AndroidEditorGradleRunner *android_editor_gradle_runner = nullptr;
#endif
String get_project_name(const Ref<EditorExportPreset> &p_preset, const String &p_name) const;