Reputation: 1
I have developed a react-native app that fetches music from firebase. The app works perfectly when I test using expo go. When I generate an apk, and install the app, the links that directly point to the audio files work but dynamic loading does not, like fetching songs by category. I am using a custom backend to fetch and post. The songs list don't load. Help please.
Upvotes: 0
Views: 11
Reputation: 391
Have you checked if your custom backend is properly set up for production? Sometimes CORS issues or incorrect API URLs can cause problems when deploying. Also, ensure that your app has all the necessary permissions, especially for network access
Upvotes: 0