diff options
author | RedworkDE <10944644+RedworkDE@users.noreply.github.com> | 2023-02-12 18:13:57 +0100 |
---|---|---|
committer | RedworkDE <10944644+RedworkDE@users.noreply.github.com> | 2023-06-28 22:34:14 +0200 |
commit | f759cc00a3fa0996dcecf703564bf70a3fcb3b7c (patch) | |
tree | 00c0088cb14591259c811b85df302008548c276b /modules/mono/config.py | |
parent | 7c456d2d0d501add3db09cce14386209c1baec9d (diff) | |
download | redot-engine-f759cc00a3fa0996dcecf703564bf70a3fcb3b7c.tar.gz |
C#: Enable exporting for Android
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index a36083b64b..2b2a8d6235 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -1,6 +1,6 @@ # Prior to .NET Core, we supported these: ["windows", "macos", "linuxbsd", "android", "haiku", "web", "ios"] # Eventually support for each them should be added back (except Haiku if not supported by .NET Core) -supported_platforms = ["windows", "macos", "linuxbsd"] +supported_platforms = ["windows", "macos", "linuxbsd", "android"] def can_build(env, platform): |