[iOS standalone] assetBundlePatterns regression?

hi @languste, there is a known issue in our current SDK 29 release where our Assets module is lazily loaded. To confirm that this is indeed the issue in your case, could you make the following changes to your app:

import Expo from 'expo';
Expo.Asset; // <----- Add this line here

This will explicitly load the Asset module (if our module doesnt get loaded in time, it falls back to React Native’s default Asset module behavior which does not take into account bundled assets)