diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2018-04-29 18:29:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-29 18:29:32 +0200 |
commit | 3bd3f41465a604caa4a826dbc53537435fb37933 (patch) | |
tree | e7c04fc6e5a0dfcc31ce877a1885641a12094210 /platform | |
parent | d0183effe02edb973e44e5ad8b3608d861f86490 (diff) | |
parent | 68b35de2b6ea23178061f65bc28b4f73e0c65f35 (diff) |
Merge pull request #18455 from neikeq/export-pck-zip-debug
Make 'Export PCK/ZIP' work well with EditorExportPlugin
Diffstat (limited to 'platform')
-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 587f8fa89b..6ed03d7aee 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); |