Hello guys, I started working with addressables and everything was fine until I decided to build a standalone build. It simply did not work there. My further investigation tells me that OnCompleted callback never happens.
It was the version that package manager shows by default, and was not the upgrade button, I updated to the last 1.7.5 version, but the problem still was there.
Finally, I realized what was the problem, I used Addressables probably not how it supposed to be. If you load content in standalone build in
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)]
private static void Init() {
addressables just silently dies, no callbacks, no exceptions, etc. I know it was weird to use it like that, but still, it would be nice to get some feedback from addressables in such a case.