react native property intl does not exist

Solutions on MaxInterview for react native property intl does not exist by the best coders in the world

showing results for - "react native property intl does not exist"
Camila
16 Jul 2017
1Modifying the "build.gradle"
2On android, you can modify the "build.gradle" file inside /android/app/build.gradle. 
3
4Remember, it is NOT the file in /android/app/gradle/build.gradle.
5
6then, go to the sited file and search for:
7
8def jscFlavor = 'org.webkit:android-jsc:+'
9
10then replace like this 
11
12 //def jscFlavor = 'org.webkit:android-jsc:+'
13 def jscFlavor = 'org.webkit:android-jsc-intl:+'
14
15you should comment this line both are not equal
16
17