mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-19 15:46:41 +00:00
5bbfe0b5a8
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.
9 lines
203 B
Groovy
9 lines
203 B
Groovy
apply plugin: 'com.android.asset-pack'
|
|
|
|
assetPack {
|
|
packName = "installTime" // Directory name for the asset pack
|
|
dynamicDelivery {
|
|
deliveryType = "install-time" // Delivery mode
|
|
}
|
|
}
|