What are the best way to store video assets in apk , and dont keep them in memory like Resources do,What are the best way to save videoClips in apk ?
I have already tried to use addressables , and its worked find on windows , it loads , playing then releases the videoClip, but when i tried to build on android and gradle gave me error -1004 error says : i should use uncompressed video asset to play i tried to disable compression via group settings in addressables , via scriptable addressables config also tried Caching.compressionEnabled = false; which for remote only i guess Streaming folder idk , may be it isn't safe , may be ...,I need to have local offline available mp4 asset. I tried to use addressables , but addressables compresses it , i tried to disable compression in group settings , in scriptable file of addressables ,any way i getting the -1004 gradle error. About , video must be uncompressed. How can i safetly store videos in apk , and dont keep them in ram all runtime ? Like with resources folder..