diff options
author | Juan Linietsky <juan@godotengine.org> | 2019-02-26 18:43:37 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2019-02-26 18:45:06 -0300 |
commit | f669ebeeaf75a00b4c66dc92f62bd5030cb11660 (patch) | |
tree | 8673a26d3087fd9885358bc64161e4445992800e /platform/android | |
parent | 3b0f3016609d4915b430738125b85a16188f1691 (diff) |
-Properly handle missing ETC support on export
-Added ability for resource importers to save metadata
-Added ability for resource importers to validate depending on project settings
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/export/export.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 9d9270bdac..8d9d9c697e 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1453,6 +1453,12 @@ public: err += TTR("Invalid package name:") + " " + pn_err + "\n"; } + String etc_error = test_etc2(); + if (etc_error != String()) { + valid = false; + err += etc_error; + } + r_error = err; return valid; } |