mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Display a warning if device CPU architecture is not active in the export preset.
This commit is contained in:
parent
1aab6e96b9
commit
293c34a2d2
5 changed files with 42 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue