├── .buildkite └── pipeline.yaml ├── .detoxrc.json ├── .dockerignore ├── .eslintrc ├── .github ├── documentation.yml ├── main.workflow ├── stale.yml ├── support.yml └── workflows │ ├── documentation.yml │ └── enforce-label.yml ├── .gitignore ├── .grenrc.js ├── .logo.png ├── .npmignore ├── .nvmrc ├── .travis.yml ├── CHANGELOG.gren.md ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── android └── app │ └── src │ ├── reactNative59 │ └── java │ │ └── com │ │ └── wix │ │ └── reactnativenotifications │ │ └── NotificationManagerCompatFacade.java │ └── reactNative60 │ └── java │ └── com │ └── wix │ └── reactnativenotifications │ └── NotificationManagerCompatFacade.java ├── babel.config.js ├── docker-compose.yml ├── e2e ├── Notifications.test.js ├── Utils.js ├── config.json ├── environment.js └── init.js ├── example ├── .gitignore ├── .watchmanconfig ├── NotificationsExampleApp.tsx ├── android │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── myapplication │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── wix │ │ │ │ └── reactnativenotifications │ │ │ │ └── app │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── raw │ │ │ └── doorbell.mp3 │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── settings.gradle ├── index.js └── ios │ ├── NotificationsExampleApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── NotificationsExampleApp.xcscheme │ │ ├── NotificationsExampleApp_release.xcscheme │ │ └── SmartNotificationsApp.xcscheme │ ├── NotificationsExampleApp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── NotificationsExampleApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── NotificationsExampleApp.entitlements │ └── main.m │ ├── NotificationsExampleAppTests │ ├── Info.plist │ ├── RNNotificationEventHandlerTests.m │ ├── RNNotificationsStoreTests.m │ ├── RNNotificationsTests.m │ └── SmartNotificationsAppTests.m │ ├── Podfile │ └── Podfile.lock ├── index.js ├── lib ├── android │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .gitignore │ │ ├── .gradle │ │ │ ├── 4.10 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ └── fileHashes.bin │ │ │ │ └── gc.properties │ │ │ └── 5.5.1 │ │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ │ └── gc.properties │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── wix │ │ │ │ └── reactnativenotifications │ │ │ │ ├── Defs.java │ │ │ │ ├── RNNotificationsModule.java │ │ │ │ ├── RNNotificationsPackage.java │ │ │ │ ├── core │ │ │ │ ├── AppLaunchHelper.java │ │ │ │ ├── AppLifecycleFacade.java │ │ │ │ ├── AppLifecycleFacadeHolder.java │ │ │ │ ├── InitialNotificationHolder.java │ │ │ │ ├── JsIOHelper.java │ │ │ │ ├── NotificationIntentAdapter.java │ │ │ │ ├── ProxyService.java │ │ │ │ ├── ReactAppLifecycleFacade.java │ │ │ │ ├── notification │ │ │ │ │ ├── INotificationChannel.java │ │ │ │ │ ├── INotificationsApplication.java │ │ │ │ │ ├── IPushNotification.java │ │ │ │ │ ├── NotificationChannel.java │ │ │ │ │ ├── NotificationChannelProps.java │ │ │ │ │ ├── PushNotification.java │ │ │ │ │ └── PushNotificationProps.java │ │ │ │ └── notificationdrawer │ │ │ │ │ ├── INotificationsDrawerApplication.java │ │ │ │ │ ├── IPushNotificationsDrawer.java │ │ │ │ │ └── PushNotificationsDrawer.java │ │ │ │ └── fcm │ │ │ │ ├── FcmInstanceIdListenerService.java │ │ │ │ ├── FcmInstanceIdRefreshHandlerService.java │ │ │ │ ├── FcmToken.java │ │ │ │ ├── IFcmToken.java │ │ │ │ ├── IFcmTokenListenerApplication.java │ │ │ │ └── INotificationsFcmApplication.java │ │ │ ├── reactNative59 │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── wix │ │ │ │ └── reactnativenotifications │ │ │ │ └── NotificationManagerCompatFacade.java │ │ │ ├── reactNative60 │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── wix │ │ │ │ └── reactnativenotifications │ │ │ │ └── NotificationManagerCompatFacade.java │ │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── wix │ │ │ │ └── reactnativenotifications │ │ │ │ └── core │ │ │ │ ├── AppLaunchHelperTest.java │ │ │ │ ├── InitialNotificationHolderTest.java │ │ │ │ ├── JsIOHelperTest.java │ │ │ │ ├── notification │ │ │ │ └── PushNotificationTest.java │ │ │ │ └── notificationdrawer │ │ │ │ └── PushNotificationsDrawerTest.java │ │ │ └── resources │ │ │ └── robolectric.properties │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ios │ ├── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMFunctions.h │ │ ├── OCMLocation.h │ │ ├── OCMMacroState.h │ │ ├── OCMRecorder.h │ │ ├── OCMStubRecorder.h │ │ ├── OCMock.h │ │ └── OCMockObject.h │ ├── RCTConvert+RNNotifications.h │ ├── RCTConvert+RNNotifications.m │ ├── RNBridgeModule.h │ ├── RNBridgeModule.m │ ├── RNCommandsHandler.h │ ├── RNCommandsHandler.m │ ├── RNEventEmitter.h │ ├── RNEventEmitter.m │ ├── RNNotificationCenter.h │ ├── RNNotificationCenter.m │ ├── RNNotificationCenterListener.h │ ├── RNNotificationCenterListener.m │ ├── RNNotificationCenterMulticast.h │ ├── RNNotificationCenterMulticast.m │ ├── RNNotificationEventHandler.h │ ├── RNNotificationEventHandler.m │ ├── RNNotificationParser.h │ ├── RNNotificationParser.m │ ├── RNNotificationUtils.h │ ├── RNNotificationUtils.m │ ├── RNNotifications.h │ ├── RNNotifications.m │ ├── RNNotifications.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── RNNotifications.xcscheme │ ├── RNNotificationsStore.h │ ├── RNNotificationsStore.m │ ├── RNNotificationsTests │ │ └── Integration │ │ │ └── RNCommandsHandlerIntegrationTest.m │ ├── RNPushKit.h │ ├── RNPushKit.m │ ├── RNPushKitEventHandler.h │ ├── RNPushKitEventHandler.m │ ├── RNPushKitEventListener.h │ ├── RNPushKitEventListener.m │ └── libOCMock.a └── src │ ├── DTO │ ├── Notification.test.ts │ ├── Notification.ts │ ├── NotificationAndroid.test.ts │ ├── NotificationAndroid.ts │ ├── NotificationFactory.ts │ ├── NotificationIOS.test.ts │ └── NotificationIOS.ts │ ├── Notifications.ts │ ├── NotificationsAndroid.ts │ ├── NotificationsIOS.ts │ ├── adapters │ ├── CompletionCallbackWrapper.ts │ ├── NativeCommandsSender.ts │ ├── NativeEventsReceiver.ts │ └── UniqueIdProvider.ts │ ├── commands │ ├── Commands.test.ts │ └── Commands.ts │ ├── events │ ├── EventsRegistry.test.ts │ ├── EventsRegistry.ts │ ├── EventsRegistryIOS.test.ts │ └── EventsRegistryIOS.ts │ ├── index.ts │ └── interfaces │ ├── EventSubscription.ts │ ├── NotificationActionResponse.ts │ ├── NotificationCategory.ts │ ├── NotificationChannel.ts │ ├── NotificationCompletion.ts │ ├── NotificationEvents.ts │ └── NotificationPermissions.ts ├── metro.config.js ├── package.json ├── react-native-notifications.podspec ├── react-native.config.js ├── scripts ├── clean.js ├── install.android.sh ├── install.ios.sh ├── install.sh ├── release.js ├── start.js ├── test-e2e.js ├── test-js.js ├── test-unit.js └── test.js ├── tsconfig-strict.json ├── tsconfig.json ├── wallaby.js └── website ├── .gitignore ├── README.md ├── docs ├── api │ ├── android-api.md │ ├── general-api.md │ ├── general-events.md │ ├── ios-api.md │ ├── ios-events.md │ └── notification-obj.md └── docs │ ├── advanced-ios.md │ ├── getting-started.md │ ├── installation-android.md │ ├── installation-ios.md │ ├── localNotifications.md │ ├── notifications-events.md │ └── subscription.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src ├── css │ └── custom.css └── pages │ └── index.js └── static └── img ├── Android_icon-icons.com_66772.png └── favicon.ico /.buildkite/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.buildkite/pipeline.yaml -------------------------------------------------------------------------------- /.detoxrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.detoxrc.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.github/documentation.yml -------------------------------------------------------------------------------- /.github/main.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.github/main.workflow -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.github/support.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /.grenrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.grenrc.js -------------------------------------------------------------------------------- /.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.logo.png -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.gren.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/CHANGELOG.gren.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/README.md -------------------------------------------------------------------------------- /android/app/src/reactNative59/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/android/app/src/reactNative59/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java -------------------------------------------------------------------------------- /android/app/src/reactNative60/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/android/app/src/reactNative60/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/babel.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /e2e/Notifications.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/e2e/Notifications.test.js -------------------------------------------------------------------------------- /e2e/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/e2e/Utils.js -------------------------------------------------------------------------------- /e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/e2e/config.json -------------------------------------------------------------------------------- /e2e/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/e2e/environment.js -------------------------------------------------------------------------------- /e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/e2e/init.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/NotificationsExampleApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/NotificationsExampleApp.tsx -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/myapplication/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | google-services.json -------------------------------------------------------------------------------- /example/android/myapplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/build.gradle -------------------------------------------------------------------------------- /example/android/myapplication/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/myapplication/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/MainActivity.java -------------------------------------------------------------------------------- /example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/MainApplication.java -------------------------------------------------------------------------------- /example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/java/com/wix/reactnativenotifications/app/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/raw/doorbell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/raw/doorbell.mp3 -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/myapplication/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/myapplication/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcodeproj/xcshareddata/xcschemes/NotificationsExampleApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcodeproj/xcshareddata/xcschemes/NotificationsExampleApp.xcscheme -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcodeproj/xcshareddata/xcschemes/NotificationsExampleApp_release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcodeproj/xcshareddata/xcschemes/NotificationsExampleApp_release.xcscheme -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcodeproj/xcshareddata/xcschemes/SmartNotificationsApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcodeproj/xcshareddata/xcschemes/SmartNotificationsApp.xcscheme -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/Info.plist -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/NotificationsExampleApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/NotificationsExampleApp.entitlements -------------------------------------------------------------------------------- /example/ios/NotificationsExampleApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleApp/main.m -------------------------------------------------------------------------------- /example/ios/NotificationsExampleAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleAppTests/Info.plist -------------------------------------------------------------------------------- /example/ios/NotificationsExampleAppTests/RNNotificationEventHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleAppTests/RNNotificationEventHandlerTests.m -------------------------------------------------------------------------------- /example/ios/NotificationsExampleAppTests/RNNotificationsStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleAppTests/RNNotificationsStoreTests.m -------------------------------------------------------------------------------- /example/ios/NotificationsExampleAppTests/RNNotificationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleAppTests/RNNotificationsTests.m -------------------------------------------------------------------------------- /example/ios/NotificationsExampleAppTests/SmartNotificationsAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/NotificationsExampleAppTests/SmartNotificationsAppTests.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('./example/index'); -------------------------------------------------------------------------------- /lib/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/.project -------------------------------------------------------------------------------- /lib/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /lib/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | google-services.json -------------------------------------------------------------------------------- /lib/android/app/.gradle/4.10/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/android/app/.gradle/4.10/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/.gradle/4.10/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /lib/android/app/.gradle/4.10/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/android/app/.gradle/5.5.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/android/app/.gradle/5.5.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/build.gradle -------------------------------------------------------------------------------- /lib/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /lib/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/android/app/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/Defs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/Defs.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsModule.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsPackage.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/AppLaunchHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/AppLaunchHelper.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/AppLifecycleFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/AppLifecycleFacade.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/AppLifecycleFacadeHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/AppLifecycleFacadeHolder.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/InitialNotificationHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/InitialNotificationHolder.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/JsIOHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/JsIOHelper.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/NotificationIntentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/NotificationIntentAdapter.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/ProxyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/ProxyService.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/ReactAppLifecycleFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/ReactAppLifecycleFacade.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/INotificationChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/INotificationChannel.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/INotificationsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/INotificationsApplication.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/IPushNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/IPushNotification.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/NotificationChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/NotificationChannel.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/NotificationChannelProps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/NotificationChannelProps.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotification.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotificationProps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotificationProps.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notificationdrawer/INotificationsDrawerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notificationdrawer/INotificationsDrawerApplication.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notificationdrawer/IPushNotificationsDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notificationdrawer/IPushNotificationsDrawer.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notificationdrawer/PushNotificationsDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notificationdrawer/PushNotificationsDrawer.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/FcmInstanceIdListenerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/FcmInstanceIdListenerService.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/FcmInstanceIdRefreshHandlerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/FcmInstanceIdRefreshHandlerService.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/FcmToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/FcmToken.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/IFcmToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/IFcmToken.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/IFcmTokenListenerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/IFcmTokenListenerApplication.java -------------------------------------------------------------------------------- /lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/INotificationsFcmApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/main/java/com/wix/reactnativenotifications/fcm/INotificationsFcmApplication.java -------------------------------------------------------------------------------- /lib/android/app/src/reactNative59/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/reactNative59/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java -------------------------------------------------------------------------------- /lib/android/app/src/reactNative60/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/reactNative60/java/com/wix/reactnativenotifications/NotificationManagerCompatFacade.java -------------------------------------------------------------------------------- /lib/android/app/src/test/java/com/wix/reactnativenotifications/core/AppLaunchHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/test/java/com/wix/reactnativenotifications/core/AppLaunchHelperTest.java -------------------------------------------------------------------------------- /lib/android/app/src/test/java/com/wix/reactnativenotifications/core/InitialNotificationHolderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/test/java/com/wix/reactnativenotifications/core/InitialNotificationHolderTest.java -------------------------------------------------------------------------------- /lib/android/app/src/test/java/com/wix/reactnativenotifications/core/JsIOHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/test/java/com/wix/reactnativenotifications/core/JsIOHelperTest.java -------------------------------------------------------------------------------- /lib/android/app/src/test/java/com/wix/reactnativenotifications/core/notification/PushNotificationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/test/java/com/wix/reactnativenotifications/core/notification/PushNotificationTest.java -------------------------------------------------------------------------------- /lib/android/app/src/test/java/com/wix/reactnativenotifications/core/notificationdrawer/PushNotificationsDrawerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/app/src/test/java/com/wix/reactnativenotifications/core/notificationdrawer/PushNotificationsDrawerTest.java -------------------------------------------------------------------------------- /lib/android/app/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=28 -------------------------------------------------------------------------------- /lib/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/build.gradle -------------------------------------------------------------------------------- /lib/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/gradle.properties -------------------------------------------------------------------------------- /lib/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /lib/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /lib/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/gradlew -------------------------------------------------------------------------------- /lib/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/android/gradlew.bat -------------------------------------------------------------------------------- /lib/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /lib/ios/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMArg.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMock.h -------------------------------------------------------------------------------- /lib/ios/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /lib/ios/RCTConvert+RNNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RCTConvert+RNNotifications.h -------------------------------------------------------------------------------- /lib/ios/RCTConvert+RNNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RCTConvert+RNNotifications.m -------------------------------------------------------------------------------- /lib/ios/RNBridgeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNBridgeModule.h -------------------------------------------------------------------------------- /lib/ios/RNBridgeModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNBridgeModule.m -------------------------------------------------------------------------------- /lib/ios/RNCommandsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNCommandsHandler.h -------------------------------------------------------------------------------- /lib/ios/RNCommandsHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNCommandsHandler.m -------------------------------------------------------------------------------- /lib/ios/RNEventEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNEventEmitter.h -------------------------------------------------------------------------------- /lib/ios/RNEventEmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNEventEmitter.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationCenter.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationCenter.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationCenterListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationCenterListener.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationCenterListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationCenterListener.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationCenterMulticast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationCenterMulticast.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationCenterMulticast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationCenterMulticast.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationEventHandler.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationEventHandler.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationParser.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationParser.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationUtils.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationUtils.m -------------------------------------------------------------------------------- /lib/ios/RNNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotifications.h -------------------------------------------------------------------------------- /lib/ios/RNNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotifications.m -------------------------------------------------------------------------------- /lib/ios/RNNotifications.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotifications.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lib/ios/RNNotifications.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotifications.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /lib/ios/RNNotifications.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotifications.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /lib/ios/RNNotifications.xcodeproj/xcshareddata/xcschemes/RNNotifications.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotifications.xcodeproj/xcshareddata/xcschemes/RNNotifications.xcscheme -------------------------------------------------------------------------------- /lib/ios/RNNotificationsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationsStore.h -------------------------------------------------------------------------------- /lib/ios/RNNotificationsStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationsStore.m -------------------------------------------------------------------------------- /lib/ios/RNNotificationsTests/Integration/RNCommandsHandlerIntegrationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNNotificationsTests/Integration/RNCommandsHandlerIntegrationTest.m -------------------------------------------------------------------------------- /lib/ios/RNPushKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNPushKit.h -------------------------------------------------------------------------------- /lib/ios/RNPushKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNPushKit.m -------------------------------------------------------------------------------- /lib/ios/RNPushKitEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNPushKitEventHandler.h -------------------------------------------------------------------------------- /lib/ios/RNPushKitEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNPushKitEventHandler.m -------------------------------------------------------------------------------- /lib/ios/RNPushKitEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNPushKitEventListener.h -------------------------------------------------------------------------------- /lib/ios/RNPushKitEventListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/RNPushKitEventListener.m -------------------------------------------------------------------------------- /lib/ios/libOCMock.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/ios/libOCMock.a -------------------------------------------------------------------------------- /lib/src/DTO/Notification.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/Notification.test.ts -------------------------------------------------------------------------------- /lib/src/DTO/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/Notification.ts -------------------------------------------------------------------------------- /lib/src/DTO/NotificationAndroid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/NotificationAndroid.test.ts -------------------------------------------------------------------------------- /lib/src/DTO/NotificationAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/NotificationAndroid.ts -------------------------------------------------------------------------------- /lib/src/DTO/NotificationFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/NotificationFactory.ts -------------------------------------------------------------------------------- /lib/src/DTO/NotificationIOS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/NotificationIOS.test.ts -------------------------------------------------------------------------------- /lib/src/DTO/NotificationIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/DTO/NotificationIOS.ts -------------------------------------------------------------------------------- /lib/src/Notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/Notifications.ts -------------------------------------------------------------------------------- /lib/src/NotificationsAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/NotificationsAndroid.ts -------------------------------------------------------------------------------- /lib/src/NotificationsIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/NotificationsIOS.ts -------------------------------------------------------------------------------- /lib/src/adapters/CompletionCallbackWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/adapters/CompletionCallbackWrapper.ts -------------------------------------------------------------------------------- /lib/src/adapters/NativeCommandsSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/adapters/NativeCommandsSender.ts -------------------------------------------------------------------------------- /lib/src/adapters/NativeEventsReceiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/adapters/NativeEventsReceiver.ts -------------------------------------------------------------------------------- /lib/src/adapters/UniqueIdProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/adapters/UniqueIdProvider.ts -------------------------------------------------------------------------------- /lib/src/commands/Commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/commands/Commands.test.ts -------------------------------------------------------------------------------- /lib/src/commands/Commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/commands/Commands.ts -------------------------------------------------------------------------------- /lib/src/events/EventsRegistry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/events/EventsRegistry.test.ts -------------------------------------------------------------------------------- /lib/src/events/EventsRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/events/EventsRegistry.ts -------------------------------------------------------------------------------- /lib/src/events/EventsRegistryIOS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/events/EventsRegistryIOS.test.ts -------------------------------------------------------------------------------- /lib/src/events/EventsRegistryIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/events/EventsRegistryIOS.ts -------------------------------------------------------------------------------- /lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/index.ts -------------------------------------------------------------------------------- /lib/src/interfaces/EventSubscription.ts: -------------------------------------------------------------------------------- 1 | export interface EventSubscription { 2 | remove(): void; 3 | } 4 | -------------------------------------------------------------------------------- /lib/src/interfaces/NotificationActionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/interfaces/NotificationActionResponse.ts -------------------------------------------------------------------------------- /lib/src/interfaces/NotificationCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/interfaces/NotificationCategory.ts -------------------------------------------------------------------------------- /lib/src/interfaces/NotificationChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/interfaces/NotificationChannel.ts -------------------------------------------------------------------------------- /lib/src/interfaces/NotificationCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/interfaces/NotificationCompletion.ts -------------------------------------------------------------------------------- /lib/src/interfaces/NotificationEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/interfaces/NotificationEvents.ts -------------------------------------------------------------------------------- /lib/src/interfaces/NotificationPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/lib/src/interfaces/NotificationPermissions.ts -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/package.json -------------------------------------------------------------------------------- /react-native-notifications.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/react-native-notifications.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/react-native.config.js -------------------------------------------------------------------------------- /scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/clean.js -------------------------------------------------------------------------------- /scripts/install.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/install.android.sh -------------------------------------------------------------------------------- /scripts/install.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/install.ios.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/release.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test-e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/test-e2e.js -------------------------------------------------------------------------------- /scripts/test-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/test-js.js -------------------------------------------------------------------------------- /scripts/test-unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/test-unit.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/scripts/test.js -------------------------------------------------------------------------------- /tsconfig-strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/tsconfig-strict.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/wallaby.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/README.md -------------------------------------------------------------------------------- /website/docs/api/android-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/api/android-api.md -------------------------------------------------------------------------------- /website/docs/api/general-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/api/general-api.md -------------------------------------------------------------------------------- /website/docs/api/general-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/api/general-events.md -------------------------------------------------------------------------------- /website/docs/api/ios-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/api/ios-api.md -------------------------------------------------------------------------------- /website/docs/api/ios-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/api/ios-events.md -------------------------------------------------------------------------------- /website/docs/api/notification-obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/api/notification-obj.md -------------------------------------------------------------------------------- /website/docs/docs/advanced-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/advanced-ios.md -------------------------------------------------------------------------------- /website/docs/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/getting-started.md -------------------------------------------------------------------------------- /website/docs/docs/installation-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/installation-android.md -------------------------------------------------------------------------------- /website/docs/docs/installation-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/installation-ios.md -------------------------------------------------------------------------------- /website/docs/docs/localNotifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/localNotifications.md -------------------------------------------------------------------------------- /website/docs/docs/notifications-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/notifications-events.md -------------------------------------------------------------------------------- /website/docs/docs/subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docs/docs/subscription.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/static/img/Android_icon-icons.com_66772.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/static/img/Android_icon-icons.com_66772.png -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix/react-native-notifications/HEAD/website/static/img/favicon.ico --------------------------------------------------------------------------------