Upload Your Game on Google Play Store with Latest AAB or Google Play Asset Delivery | UE5 |
Deploy Game on Play Store with Unreal Engine 5 [500MB]
You made a game in Unreal Engine 5, want to deploy on Play Store but you stuck on a very common problem Google Play Store no longer accept APK or OBB files.
Solution here AAB [Android App Bundle] or Google Play Asset Delivery. But you don't know how to create with packaged game with these latest upgrades so I'm showing you solutions here!!
with Video check out.
Start with Packaging in Unreal Engine 5
- Open Unreal Engine 5
- Open Edit - Plugins
Platforms -> Android
- PackageName=com.YourCompeny.[PROJECT]
- StoreVersion=1
- StoreVersionOffsetArm64=0
- StoreVersionOffsetX8664=0
- ApplicationDisplayName=
- VersionDisplayName=1
- bPackageDataInsideApk=True
- bEnableBundle=True
- bEnableUniversalAPK=True
- bBundleABISplit=True
- bBundleLanguageSplit=True
- bBundleDensitySplit=True
Generate Key Store files your Game
Video Link check outGo To Project - Packaging
Check these settings in Packaging section
Check these settings in Project section
Config settings |
Package Your Project with Shipping Config.
Shipping Checked!! |
Done!! Next Part
Going with Manual Configs
- Open
- Your Project Folder/Saved/StagedBuilds/[ANDROID_TYPE]/[Project Name]/Content/Paks
- You Found these paks files
- Copy These "paks files"
- Go to Project Folder/Build/Android/gradle(create folder)/assetpacks(create folder)/
- Paste Your "paks files"
We need more steps [5.4]
1. [RootGameProject]\Build\Android\gradle\assetpacks\fast-follow
- \gradle\assetpacks\fast-follow\pakchunk0\src\main\assets
you need to paste pak files inside the folders
- Create a File name "build.gradle"
- Paste this script in build.gradle file
- apply plugin: 'com.android.asset-pack'
- def fileparts = projectDir.absolutePath.replaceAll('\\\\', '/').tokenize('/')
- def assetPackName = fileparts[fileparts.size()-1]
- def assetPackType = fileparts[fileparts.size()-2]
- assetPack {
- packName = assetPackName
- dynamicDelivery {
- deliveryType = assetPackType
- instantDeliveryType = assetPackType
- }
- }
Next Check out Videos links
Video Link 1 [Part 1 to Play Store]
Seond Video Link [Part 2 to Play Store]
Useful Links:
Thank You!!
Comments
Post a Comment