├── .gitignore ├── LICENSE ├── README.md ├── RNLocalNotifications.podspec ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── wumke │ └── RNLocalNotifications │ ├── AlarmReceiver.java │ ├── RNLocalNotificationsModule.java │ └── RNLocalNotificationsPackage.java ├── index.js ├── ios ├── RNLocalNotifications.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── wimr.xcuserdatad │ │ └── xcschemes │ │ ├── LRDRCTSimpleToast copy.xcscheme │ │ ├── LRDRCTSimpleToast.xcscheme │ │ └── xcschememanagement.plist └── RNLocalNotifications │ ├── RNLocalNotifications.m │ ├── alarm.caf │ └── silence.caf └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/README.md -------------------------------------------------------------------------------- /RNLocalNotifications.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/RNLocalNotifications.podspec -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/github/wumke/RNLocalNotifications/AlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/android/src/main/java/com/github/wumke/RNLocalNotifications/AlarmReceiver.java -------------------------------------------------------------------------------- /android/src/main/java/com/github/wumke/RNLocalNotifications/RNLocalNotificationsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/android/src/main/java/com/github/wumke/RNLocalNotifications/RNLocalNotificationsModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/github/wumke/RNLocalNotifications/RNLocalNotificationsPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/android/src/main/java/com/github/wumke/RNLocalNotifications/RNLocalNotificationsPackage.java -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNLocalNotifications.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNLocalNotifications.xcodeproj/xcuserdata/wimr.xcuserdatad/xcschemes/LRDRCTSimpleToast copy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications.xcodeproj/xcuserdata/wimr.xcuserdatad/xcschemes/LRDRCTSimpleToast copy.xcscheme -------------------------------------------------------------------------------- /ios/RNLocalNotifications.xcodeproj/xcuserdata/wimr.xcuserdatad/xcschemes/LRDRCTSimpleToast.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications.xcodeproj/xcuserdata/wimr.xcuserdatad/xcschemes/LRDRCTSimpleToast.xcscheme -------------------------------------------------------------------------------- /ios/RNLocalNotifications.xcodeproj/xcuserdata/wimr.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications.xcodeproj/xcuserdata/wimr.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/RNLocalNotifications/RNLocalNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications/RNLocalNotifications.m -------------------------------------------------------------------------------- /ios/RNLocalNotifications/alarm.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications/alarm.caf -------------------------------------------------------------------------------- /ios/RNLocalNotifications/silence.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/ios/RNLocalNotifications/silence.caf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumke/react-native-local-notifications/HEAD/package.json --------------------------------------------------------------------------------