On android 4.4.2 borderRadius and borderWidth is not render correctly
Environment
OS: Windows 10
Node: 8.5.0
Yarn: 1.2.1
npm: 5.3.0
Watchman: Not Found
Xcode: N/A
Android Studio: Version 2.3.0.0 AI-162.4069837
Packages: (wanted => installed)
react: 16.2.0 => 16.2.0
react-native: 0.53.0 => 0.53.0
Expected Behavior
A rounded rectangle must be rendered
Actual Behavior
Screen shot on android 4.4.2

Steps to Reproduce
Correct demo : https://snack.expo.io/BJuR6khOM
Run the following code on android 4.4.2
importReact,{Component}from'react';import{Text,StyleSheet,TextInput}from'react-native';exportdefaultclassAppextendsComponent{render(){return(<TextInputstyle={styles.container}/>);}}conststyles=StyleSheet.create({container: {borderWidth: 1,borderColor: '#00ff00',borderRadius:10,backgroundColor: '#ff0000',color: '#252525',paddingLeft: 15,paddingRight: 15,marginTop:50,},});
On android 4.4.2
borderRadiusandborderWidthis not render correctlyEnvironment
Expected Behavior
A rounded rectangle must be rendered
Actual Behavior
Screen shot on android 4.4.2

Steps to Reproduce
Correct demo : https://snack.expo.io/BJuR6khOM
Run the following code on android 4.4.2