Loading information in TextInput in standalone apk on android 5.1

Please provide the following:

  1. SDK Version: 34
  2. Platforms(Android):

I am trying to load information in TextInput. It is working fine in expo app, simulator and using
expo start --no-dev --minify command.

Standalone signed apk also working fine on latest android 9 but have issue on android 5.1. unable to load data in TextInput in android 5.1 with signed apk.

Here is my code:

<TextInput style={styles.textinput} placeholder=“Your Name” value={this.state.Name} onChangeText={(Name) => this.setState({ Name })} >

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.