diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-26 10:48:49 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-26 10:48:49 +0100 |
commit | e7bf883068996168e692d0383c190bbc2808bcf6 (patch) | |
tree | d10065a7fa7133ca5c62c86e4ef25330b25bbdb9 /platform/android/export/export_plugin.h | |
parent | 63bde2feffff1b39e4dc6526116724cfdada7ef9 (diff) | |
parent | 293c34a2d20dc86f1962f7c41c2f3f33abf8abc3 (diff) | |
download | redot-engine-e7bf883068996168e692d0383c190bbc2808bcf6.tar.gz |
Merge pull request #88611 from Alex2782/force_device_cpu_architecture
Display a warning if device CPU architecture is not active in the export preset.
Diffstat (limited to 'platform/android/export/export_plugin.h')
-rw-r--r-- | platform/android/export/export_plugin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/android/export/export_plugin.h b/platform/android/export/export_plugin.h index e25655c6cc..b968302449 100644 --- a/platform/android/export/export_plugin.h +++ b/platform/android/export/export_plugin.h @@ -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; |