├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .github └── dependabot.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── ocetnik │ └── timer │ ├── BackgroundTimerModule.java │ └── BackgroundTimerPackage.java ├── index.js ├── ios ├── RNBackgroundTimer.h ├── RNBackgroundTimer.m └── RNBackgroundTimer.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ └── jlexyc.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── package.json ├── react-native-background-timer.podspec └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | .idea 4 | node_modules 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/ocetnik/timer/BackgroundTimerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/android/src/main/java/com/ocetnik/timer/BackgroundTimerModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/ocetnik/timer/BackgroundTimerPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/android/src/main/java/com/ocetnik/timer/BackgroundTimerPackage.java -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNBackgroundTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/ios/RNBackgroundTimer.h -------------------------------------------------------------------------------- /ios/RNBackgroundTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/ios/RNBackgroundTimer.m -------------------------------------------------------------------------------- /ios/RNBackgroundTimer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/ios/RNBackgroundTimer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNBackgroundTimer.xcodeproj/xcuserdata/jlexyc.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/ios/RNBackgroundTimer.xcodeproj/xcuserdata/jlexyc.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/package.json -------------------------------------------------------------------------------- /react-native-background-timer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/react-native-background-timer.podspec -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocetnik/react-native-background-timer/HEAD/yarn.lock --------------------------------------------------------------------------------