Issues with my app after last deploy ”gap_init:3”

I’m not sure what’s going on here but this is what I get when I try to access the app. It’s being hosted by firebase.

Solved it. I deployed an Android build to my firebase hosting. This is why I’m getting these alerts.

@Podum Would you please share how you solved it?

This issue occurs when you create an apk file using ionic cordova build android --prod. The www directory is now housing code that firebase is unable to sort through. If you deploy those you will get the issues I posted earlier.

To fix this…

run ionic build --prod in the console. When it is completed run firebase deploy.

1 Like