-
-
Notifications
You must be signed in to change notification settings - Fork 21.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't export projects from the Android editor due to the export dialog having a fixed size, making the button unreachable #73130
Comments
In theory, exporting apps to desktop platforms or HTML5 could be supported (even though you'd have no way to run those exported projects on the device itself). I don't know if it ever worked on Android, but the Export button is intentionally hidden on Android. However, exporting apps for Android from the Android editor is impossible to support, as you can't install the necessary tooling on an Android device. You need the Android SDK for that, which can only be installed on desktop platforms. The same goes for exporting to iOS, as you need Xcode for that, which is only available on macOS. |
That's a known limitation described in the announcement article. |
As I said before in my issue, it was possible to export apk before! I made a video showing this: https://youtu.be/qwz-KZzAxoM |
I don't think the development team should hide this button, it should be an option for some of us as a developer community, not a dead end. In the meantime, since the above has proven that exporting on Android is feasible, I think we can return the button to its original position (of course, if the dev team has other considerations such as adaptation, hopefully that will be expressed, rather than making us jealous of each other here). |
The export button could exists and available, but the export dialog has fixed size and button is located out of screen. |
As far as I know, it was deliberate. |
This was indeed an intentional change, but there's no point in exposing the option if it looks broken on most displays. As per the Code of Conduct, always assume positive intent 🙂 |
so.Are there any plans to add support for exporting on Android in a future release? |
This is not my personal appeal by any means. Since it is not working properly at this stage, are there any official plans to make it work properly in the future? As far as I know, some Android engines already support this |
There is no ETA for fixing this issue, as contributors work on a best-effort basis. Most core contributors don't use the Android editor as a daily driver, so this will likely take a while to be resolved. |
Maybe you're right, but I don't think that changing window layout is a really challenging task, as godot's framework already has all necessary utilities to create an adaptive layout. Sure, there is no reason to prioritise this issue, but it still exists and needs to be solved. :] |
This comment was marked as off-topic.
This comment was marked as off-topic.
I think this should have more priority not in the project in general but in the android editor itself, |
Fixes godotengine/godot#73130 - Update the min height from `700` to `500` to match the editor's min height of `600` - Wrap the sections of the `TabContainer` within a `ScrollContainer`. This prevents the export dialog from trying to resize to fit the tallest of those sections, and make them accessible on small screen devices.
Fixes godotengine#73130 - Update the min height from `700` to `500` to match the editor's min height of `600` - Wrap the sections of the `TabContainer` within a `ScrollContainer`. This prevents the export dialog from trying to resize to fit the tallest of those sections, and make them accessible on small screen devices.
Bugsquad note: This issue has been confirmed several times already. No need to confirm it further.
Godot version
4.0.0.beta.17
System information
Android 12 Mediatik helio g95
Issue description
There are no export button to export our projects to apk on google play godot app
Steps to reproduce
Click export then add and click on Android there is no export button
Minimal reproduction project
Any project 3d or 2d can't be exported
The text was updated successfully, but these errors were encountered: