-
-
Notifications
You must be signed in to change notification settings - Fork 21.5k
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
Add generate_apk=yes
to generate an APK after building
#84440
Add generate_apk=yes
to generate an APK after building
#84440
Conversation
dd5162a
to
3c674ed
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Added a suggestion for further improvements.
3c674ed
to
27343b0
Compare
Done. Note that using
|
I think it's fine to use "apk" as a shorthand for Android app package which can be either apk or aab. Might be worth mentioning AAB in the description of the option. |
27343b0
to
4c41bcf
Compare
Done 🙂 |
Needs running |
This is useful to speed up iteration when working on the engine (or editor). This can be combined with a script that calls `adb` to deploy the APK on a device (coupled with Godot's `--export-*` for projects) to further speed up iteration.
4c41bcf
to
18152ac
Compare
Thanks! |
This is useful to speed up iteration when working on the engine (or editor). If you need multiple architectures in the APK, specify
generate_apk=yes
when building the last architecture you're interested in only.This can be combined with a script that calls
adb
to deploy the APK on a device (coupled with Godot's--export-*
for projects) to further speed up iteration.Gradle output is set to
--quiet
, which means it only leaves persistent messages on errors (progress is visible inline while building):