Reputation: 59
SyntaxError: Unexpected token < in JSON at position 0 IMAGE
tried this:
android studio> sync with gradle files>clean project
yarn start —- –-reset-cache
run project on android studio
IT WORKED!
Upvotes: 0
Views: 219
Reputation: 2301
check your JSX code, you may have < before/after a JSX tag, which leads to that error
eg:
<<View>
<Text>Something</Text>
</View>
Upvotes: 1