Because my game doesn't fit into 150 mb google play's size limit, i've decided to use "Play Asset Delivery" system. I've created a couple of bundles, set them to "install time" delivery mode, built .abb file and noticed that it is now even bigger than build without bundles. Looking inside of the file I saw that "base" folder's size didn't even change. Which means that for some reason Unity builds same assets in bundles AND in base module. Which is wrong because separating these assets from base module is the whole point of PAD. My project doesn't have any "Resources" or "StreamingAssets" folders, so that's not the case. I'm also using Addressables system and refer to the same assets in bundles only by their addresses, so my scenes don't have any direct link to these assets. What could be missing in this situation?
Unity PAD system only adds to .abb size
58 Views Asked by Cube Quber At
0
There are 0 best solutions below
Related Questions in UNITY-GAME-ENGINE
- Using arrow keys to rotate an object
- know object behind another object is fully visible
- Unity3d AudioSource not creatable
- Unity3d - Input.GetKey returns true more than once
- Flurry Ads on Unity3D with Prime31 plugin
- Make screenshot of DirectX window that is hidden and doesn't have focus
- Coroutine being detected as inactive despite being active
- Unity3D: Adding charged force in relation to position
- Unity - Particles emitting non-random
- 3d mouse aim camera 3rd person vertical C#
- Unity: How would I go about creating a power up system?
- Unity - Gui Button issues (Android)
- Unity3d strange Collider behaviour
- Start() function doesn't work properly after Application.LoadLevel
- Gravity works weird
Related Questions in BUILD
- Ionic cordova build
- Force GHC using local files
- RPM spec files with rpmbuild can have errors
- (automake, libtool) build fails in automake when using same source file name in different directory
- Backup strategy for build tool hosted on Azure VM
- include typescript file in output result build with TFS
- Android Build failed at ':app:dexDebug' with exception ( library and app project )
- GNU make - depend only on file existence and not modification time
- Error code 31 returned from mt.exe when building C++ projects in Visual Studio 2013
- IONIC FRAMEWORK Build Xcode Error :(
- Jenkins - Stage before "Source Code Management"
- Python: Trouble with dill installation
- Execution failed for task 'app:mergeDebugResources' Crunching Cruncher....png failed
- Android: Execution failed for task ':app:processDebugResources'
- Change assets urls to cdn adding absolute path in Grunt
Related Questions in ASSETBUNDLE
- Unity 4 - using AssetBundle to pre-load assets that are shared across multiple scenes?
- Unity3D AssetBundle prefab with missing material
- Unity3D Assets Bundle Manifest
- Unable to register css / js using assets / registerCss function
- Assetbundle size issue when I make scenes(.unity3d files)
- Android Application crashes, using Unity and Vuforia
- Multiple unity3d assetbundle download in a single progress bar?
- Downloading an AssetBundle more than once fails
- How to get AssetBundleManifest in Unity3D
- Scene loaded from asset bundle is not animating
- Unity asset bundle server automation
- Destroying loaded assets from a Unity Asset Bundle
- How to use asset bundle as database instead of PlayerPrefs in unity3d
- How to update my game made with Unity running on Android?
- unity assetbundle loadasset type
Related Questions in ADDRESSABLES
- Unity addressables load specific prefab from cloud
- Can Unity Addressables include both assets and scenes, unlike Asset Bundles?
- URI Equivalent of encode_www_form_component in Addressable
- How to create a new version of bundles through Addressables?
- Unity: AndroidJavaException: java.lang.ClassNotFoundException: com.google.android.play.core.assetpacks.AssetPackManagerFactory
- Unity PAD system only adds to .abb size
- Delivering downloadable content to Android application in Unity (loading with Addressables)
- The type or namespace name 'AsyncOperationHandle<>' could not be found
- Unity Build and Run aab file - nothing happens
- Unity Addressables: RemoteProviderException : TextDataProvider : unable to load from url /base.apk!/assets/aa/settings.json
- Can you add addressables from your script in Unity?
- Addressable related confusion at runtime (for Unity games)?
- How to duplicate, reuse, and dispose of dynamically generated addressable objects
- How to add new remote content to unity addressable without rebuilding and uploading app (android and IOS)
- Getting "Assertion failed on expression" error when unloading scene in Unity?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?