summaryrefslogtreecommitdiff
path: root/platform/android/export
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuyakou@gmail.com>2021-02-21 21:34:27 -0800
committerFredia Huya-Kouadio <fhuyakou@gmail.com>2021-02-24 18:40:36 -0800
commiteda18fcc1fda6cb33946521e8a677c07a4f216f0 (patch)
treef4325fd3db42665e3c1fd71735464d678a9ae385 /platform/android/export
parent757c151219cccc197cb5ff80dbbdf3e4a9b46e0d (diff)
Update the filtering logic to properly handle directories with `.gdignore` files.
Diffstat (limited to 'platform/android/export')
-rw-r--r--platform/android/export/export.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp
index da3ffab094..088bb35f62 100644
--- a/platform/android/export/export.cpp
+++ b/platform/android/export/export.cpp
@@ -2414,6 +2414,9 @@ public:
print_verbose("- custom build enabled: " + bool_to_string(use_custom_build));
print_verbose("- apk expansion enabled: " + bool_to_string(apk_expansion));
print_verbose("- enabled abis: " + String(",").join(enabled_abis));
+ print_verbose("- export filter: " + itos(p_preset->get_export_filter()));
+ print_verbose("- include filter: " + p_preset->get_include_filter());
+ print_verbose("- exclude filter: " + p_preset->get_exclude_filter());
Ref<Image> splash_image;
Ref<Image> splash_bg_color_image;