LuisPinto
LuisPinto

Reputation: 1697

android.app.Application cannot be cast to com.facebook.react.ReactApplication

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

Answers (2)

Mujtaba Fadhil
Mujtaba Fadhil

Reputation: 6116

For me, Restarting my Android device always solves the issue

Looks like it is a random error

Upvotes: 5

Jon Senra
Jon Senra

Reputation: 71

Adding the following to AndroidManifest.xml should solve the error:

 <application
   android:name=".MainApplication"

Upvotes: 7

Related Questions