I am unable to build my android app using react-native run-android, because I get following error. Yesterday everything worked fine. Do you know where could be the
react-native run-android
For those who have the same error, try adding this to App Builde.gradle :
android { //the rest of the code above lintOptions { disable 'MissingTranslation' } }
I had the same problem, and this, for whatever reason, worked for me.