├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── voximplant │ └── foregroundservice │ ├── Constants.java │ ├── NotificationHelper.java │ ├── VIForegroundService.java │ ├── VIForegroundServiceModule.java │ └── VIForegroundServicePackage.java ├── index.js ├── package.json └── react-native.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/voximplant/foregroundservice/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/src/main/java/com/voximplant/foregroundservice/Constants.java -------------------------------------------------------------------------------- /android/src/main/java/com/voximplant/foregroundservice/NotificationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/src/main/java/com/voximplant/foregroundservice/NotificationHelper.java -------------------------------------------------------------------------------- /android/src/main/java/com/voximplant/foregroundservice/VIForegroundService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/src/main/java/com/voximplant/foregroundservice/VIForegroundService.java -------------------------------------------------------------------------------- /android/src/main/java/com/voximplant/foregroundservice/VIForegroundServiceModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/src/main/java/com/voximplant/foregroundservice/VIForegroundServiceModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/voximplant/foregroundservice/VIForegroundServicePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/android/src/main/java/com/voximplant/foregroundservice/VIForegroundServicePackage.java -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voximplant/react-native-foreground-service/HEAD/react-native.config.js --------------------------------------------------------------------------------