I have a small mobile app that I wrote using React Native (henceforth RN) back in 2017, currently deployed on the Google Play Store and Apple App Store. Shortly before my US trip, I got an email from Google telling me about a required action:
By August 1, 2019, all apps that use native code must provide a 64-bit version in addition to the 32-bit version in order to publish an update.
All entries tagged react-native.
You can subscribe to an RSS feed of this list.
Jul 2019
Oct 2017
-
I’ve been testing out the WebView component, but I can’t seem to get it to render things.
Sample here: https://snack.expo.io/r1oje4C3-
export default class App extends Component { render() { return ( <View style={styles.container}> <Text style={styles.paragraph}> Change code in the editor and watch it change on your phone! Save to get a shareable url. You get a new url each time you save. </Text> <WebView source={{html: '<p>Here I am</p>'}} /> <WebView source={{ uri: 'http://www.google.com'}} /> </View> ); } }
When running the above example in Expo, neither of the two WebView components seem to render. What am I doing wrong?