I made some changes to the index.android.js file and saved it, when running react-native run-android command, the app remains the same !! The code looks like this:
var React = require('react');
var Text = require('react-native').Text;
var AppRegistry = require('react-native').AppRegistry;
const App = function(){
return (
<Text>Meu primeiro app</Text>
);
};
AppRegistry.registerComponent('app1', function(){ return App });
But that same welcome message to react-native !!