export export assets not loading

Please provide the following:

  1. SDK Version: 37
  2. Platforms(Android/iOS/web/all): Android

Hi, currently we have an app published on Google Play and AppStore and we’re using Expo servers. But our users are having problems on fetching updates from the cloud. We’ve decided to check the possibility to use our own servers to host our bundle.

We managed to export the assets to our own servers and build an APK following the guide bellow

https://docs.expo.io/distribution/hosting-your-app/

But apparently for some reason the MP4 video doesn’t load at all, but all of the other assets works just fine. When using the expo servers, it works! After some research we haven’t found any solution to this problem.

So we’ve been wondering, is this a known problem with Expo Export? Did someone experienced some similar problem?

import {Video} from "expo-av";

export default function(props){
 return(
<Video
            resizeMode="cover"
            source={require('../../../assets/img/logo.mp4')}
)
}

App.json

"assetBundlePatterns": [
      "./assets/img/"
    ],

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.