diff options
author | fhuya <fhuyakou@gmail.com> | 2019-06-19 12:05:58 -0700 |
---|---|---|
committer | fhuya <fhuyakou@gmail.com> | 2019-06-19 12:05:58 -0700 |
commit | f7200d696005c65098ccf56f648a9c1a092aa905 (patch) | |
tree | 551f6ec34f96f63f53ec55e12c737077d8594c24 /platform/android/export | |
parent | 02ed4b392cc6655bfd9958c0c0fececffd8e5836 (diff) |
Deprecate armv6 support for Android
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 30267aa968..74d89a1e99 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -553,9 +553,6 @@ class EditorExportPlatformAndroid : public EditorExportPlatform { static Vector<String> get_abis() { Vector<String> abis; - // We can still build armv6 in theory, but it doesn't make much - // sense for games, so disabling for now. - //abis.push_back("armeabi"); abis.push_back("armeabi-v7a"); abis.push_back("arm64-v8a"); abis.push_back("x86"); |