Reputation: 1697
I have use this command on my project:
react-native upgrade
And I'm getting the error when I try to build the app:
android.app.Application cannot be cast to com.facebook.react.ReactApplication
I really don't know how to fix that. Any tip?
Upvotes: 7
Views: 4711
Reputation: 6116
For me, Restarting my Android device always solves the issue
Looks like it is a random error
Upvotes: 5
Reputation: 71
Adding the following to AndroidManifest.xml should solve the error:
<application
android:name=".MainApplication"
Upvotes: 7