Hi all i use the following line of code and when i tried to create release apk it crashes.Any help is appreciated. `import { Button } from 'react-native-material-design'; export default class App extends Component<Props> { render() { return ( <View style={styles.container}> <Button text="NORMAL FLAT" onPress={()=> console.log("I pressed a flat button")} /> </View> ); } }` I have the following RN and material design version.The App works perfectly in debug mode. "react": "16.2.0", "react-native": "0.53.3", "react-native-material-cards": "^1.0.7", "react-native-material-design": "^0.3.7", "react-native-material-ui": "^1.20.0", "react-native-vector-icons": "^4.5.0"
Hi all i use the following line of code and when i tried to create release apk it crashes.Any help is appreciated.
import { Button } from 'react-native-material-design'; export default class App extends Component<Props> { render() { return ( <View style={styles.container}> <Button text="NORMAL FLAT" onPress={()=> console.log("I pressed a flat button")} /> </View> ); } }I have the following RN and material design version.The App works perfectly in debug mode.
"react": "16.2.0",
"react-native": "0.53.3",
"react-native-material-cards": "^1.0.7",
"react-native-material-design": "^0.3.7",
"react-native-material-ui": "^1.20.0",
"react-native-vector-icons": "^4.5.0"