-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
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
[3.x] Add support for Android Play Asset Delivery #52526
Conversation
c3b9fbf
to
389ce3b
Compare
Thanks @m4gr3d ! Consider mentioning in the commit message that this PR only adds support for a subset of Play Asset Delivery: this causes a single install-time asset pack to always be present, but doesn't add support for dynamically downloaded asset packs. Optionally, you might consider making the creation of this install-time asset pack configurable vs always creating it. |
389ce3b
to
e113e3a
Compare
This only adds support for a subset of Play Asset Delivery: this causes a single install-time asset pack to always be present, but doesn't add support for dynamically downloaded asset packs.
e113e3a
to
35a98d3
Compare
Thanks! |
Hi. How do we use Play Asset Delivery for our android games. Is there a documentation on how to use this ? With this update we can just upload android game bigger than 150MB limit now ? Thanks Play Asset Delivery with "install-time" flag maximum file size is 1GB. So we can upload 1GB AAB game now ? |
@takhimi The use of 'install-time' play asset delivery is automatic when you export your godot game as an |
Add support for Android Play Asset Delivery which replaces APK's expansion files (OBBs) for Android App Bundle (AAB) binaries.
Addresses part of #48636.