We’ve just released an app on Google Play, the problem is there are missing files. And this only occurs when downloading the build through Google Play.
If I build the APK normally and install on any device, all the files are working fine.
These files sit in the StreamingAssets folder.
The application binary is split, and both the APK and the OBB have been uploaded correctly.
Any ideas?
It seems there are some major problems and other threads about OBB files and Google Play.
The way I solved it was the following…
I changed the Install location to Force Internal and Write access to Internal only in the Player Settings and it worked for me.
Now my app works fine with application split binary after downloading from Google Play Store.
To get it working with external access (i.e file read and write), I would suggest try adding the android.permission.WRITE_EXTERNAL_STORAGE permission to your Android manifest. (Although I haven’t confirmed if this works). But my guess is if you don’t have this permission, and because the files I was trying to access were in the External storage (default player setting), they weren’t found.