Getting Started

  1. Purchase the Plugin
  2. Purchase the plugin on the Official Unreal Engine Marketplace

  3. Install the Plugin
  4. In the Epic Games Launcher, the plugin will appear in your Library.
    Go to the Library tab and find the plugin and add it to the engine.

  5. Enable Play Services Play Asset Delivery PRO Plugin
  6. In Unreal Engine, the plugin will be available in the plugins section.
    Go to Settings -> Plugins -> Search for "Play Services Play Asset Delivery PRO" and ensure it is enabled.

  7. Disable Unreal Engine's built-in Google PAD plugin
  8. In Unreal Engine, the plugin will be available in the plugins section.
    Go to Settings -> Plugins -> Search for "Google PAD" and ensure it is disabled.

  9. Install at least java 11
  10. Ensure you have at least java 11 installed on your machine.

  11. Download Android API-34
  12. Download at least Android API-34 from Android Studio, if you have not done so already.

  13. Package with Android API-34
  14. In your Unreal Engine Editor, go to Project Settings -> Platforms -> Android SDK in the Project Settings left navigation bar. Under SDKConfig, go to the field "SDK API Level" and put in "android-34" or greater.

  15. Enable Generate AAB Bundle
  16. You should already be doing this, but just in case:
    Go to Project Settings -> Platforms ->Android and Enable Generate bundle (AAB).

  17. Disable Package Game Data Inside APK
  18. Go to Project Settings -> Platforms ->Android and Disable Package Game Data Inside APK?.

  19. Disable OBB Patching
  20. Go to Project Settings -> Platforms ->Android and Disable Allow patch OBB file.

  21. Update Package Settings
  22. Within your Project Settings, update the your Package Settings to ensure all assets are available from PAK files.

    Go to Project Settings -> Project -> Packaging and:

    Ensure "Use Pak File" is set to true
    Ensure "Use Io Store" is set to false
    Ensure "Generate Chunks" is set to true
    Ensure "Share Material Shader Code" is set to false
  23. Update Gradle if you are Using Older Engine Versions
  24. If you are using Unreal Engine Versions 5.2 and below, your gradle is outdated and needs to be upgraded to download the latest libraries during your packaging process.

    We have a FREE Android Utility Pack plugin which seamlessly upgrades Gradle along with other optional SDK fixes for Unreal Engine. Download the plugin on the Official Unreal Engine Marketplace and follow our documentation to upgrade your gradle version.

  25. Obb Filters
  26. NOTE: This step is automated for Windows users, so no action is required on your part. The instructions below are only applicable to Linux and macOS users only.

    In short, if Obb Filters are not set up, the plugin will automatically add them. For Linux and macOS users, however, you will need to do this manually. This process ensures that all Chunks, except Chunk 0, are excluded from your main OBB file (install-time asset pack).

    The first tab below shows an example of what the plugin does. For Linux and macOS users, you will need to perform this action manually, but only once. The left side of the tab displays a snippet from your DefaultEngine.ini config file without Obb Filters. On Windows, the plugin will automatically add the necessary filters, as shown on the right.

    Here is the text for you to copy and paste: +ObbFilters="-*pakchunk1*" , but add this line 9 times changing the "1" as can be seen in the first tab below.

    What this essentially does is make it such that your install-time asset pack will not additionally contain chunks that you want to be part of fast-follow or on-demand asset packs.

  27. Verify
  28. When packaging your project, the plugin will check that you have done the above correctly.
    Any misconfigurations will be logged as warnings and inform you what is wrong and consequently how to fix it.