Reputation:
When I run react-native run-android
in a project. what actually happens. Where can I read the actual script? How can I change it's behavior ?
In particular I am interested in this project: Status React project I just don't know where to start searching. How can I change flow of react-native run-android
. I wonder: does it call any callbacks to redefine in my project?
Upvotes: 0
Views: 54
Reputation: 44714
The functionality for react-native
's run-android
subroutine is held within the react-native/local-cli/runAndroid/runAndroid.js
file. You can change it's behavior by modifying this file.
Upvotes: 1