Display a warning if device CPU architecture is not active in the export preset.

This commit is contained in:
Alexander Hartmann 2024-02-21 00:01:33 +01:00
parent 1aab6e96b9
commit 293c34a2d2
5 changed files with 42 additions and 2 deletions

View file

@ -76,6 +76,7 @@ class EditorExportPlatformAndroid : public EditorExportPlatform {
String name;
String description;
int api_level = 0;
String architecture;
};
struct APKExportData {
@ -221,6 +222,8 @@ public:
virtual String get_option_tooltip(int p_index) const override;
virtual String get_device_architecture(int p_index) const override;
virtual Error run(const Ref<EditorExportPreset> &p_preset, int p_device, int p_debug_flags) override;
virtual Ref<Texture2D> get_run_icon() const override;