diff options
| author | Ignacio Etcheverry | 2018-04-26 23:07:21 +0200 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-29 18:45:09 +0200 |
| commit | 00c55bb2ebd825e679253ec38278630935b63313 (patch) | |
| tree | ebb2b86537a486ad4dfdbd20d5e3115c2b228ddb /platform/android/export/export.cpp | |
| parent | fe9da69f9607afab9794c6590a385935fb66bba6 (diff) | |
| download | godot-00c55bb2ebd825e679253ec38278630935b63313.tar.gz godot-00c55bb2ebd825e679253ec38278630935b63313.tar.zst godot-00c55bb2ebd825e679253ec38278630935b63313.zip | |
Fix _export_begin not being called when exporting to android
(cherry picked from commit c8884ce3bddfeb2dead4208047edb27f97a7e78d)
Diffstat (limited to '')
| -rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 6d9f0a7e9..3f1c007e6 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1323,6 +1323,8 @@ public: virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) { + ExportNotifier notifier(*this, p_preset, p_debug, p_path, p_flags); + String src_apk; EditorProgress ep("export", "Exporting for Android", 105); |
