react-native-simple-alert
v1.0.15
Published
React native alert
Downloads
12
Readme
react-native-alert
Getting started
$ npm install react-native-alert --save
Mostly automatic installation
$ react-native link react-native-alert
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-alert
and addRNAlert.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNAlert.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.dev.mp3.alert.RNAlertPackage;
to the imports at the top of the file - Add
new RNAlertPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-alert' project(':react-native-alert').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-alert/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-alert')
Usage
import RNAlert from 'react-native-alert';
// TODO: What to do with the module?
RNAlert;