react-native-open-email
v1.0.0
Published
React Native module for native opening of the default mail application.
Downloads
7
Readme
react-native-open-email
Getting started
$ npm install react-native-open-email --save
Mostly automatic installation
$ react-native link react-native-open-email
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-open-email
and addOpenEmail.xcodeproj
- In XCode, in the project navigator, select your project. Add
libOpenEmail.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.reactlibrary.OpenEmailPackage;
to the imports at the top of the file - Add
new OpenEmailPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-open-email' project(':react-native-open-email').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-open-email/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-open-email')
Usage
import openEmailApp from 'react-native-open-email';
class ExampleComponent extends React.Component {
_handlePress = () => {
openEmailApp();
}
render() {
return (
<TouchableOpacity onPress={this._handlePress}>
<Text>Open email app</Text>
</TouchableOpacity>
)
}
}