summaryrefslogtreecommitdiff
path: root/platform/android
diff options
context:
space:
mode:
authorJuan Linietsky <juan@godotengine.org>2019-02-26 18:43:37 -0300
committerJuan Linietsky <juan@godotengine.org>2019-02-26 18:45:06 -0300
commitf669ebeeaf75a00b4c66dc92f62bd5030cb11660 (patch)
tree8673a26d3087fd9885358bc64161e4445992800e /platform/android
parent3b0f3016609d4915b430738125b85a16188f1691 (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.cpp6
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;
}