├── .eslintrc ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── __mocks__ └── RNBackgroundDownloader.js ├── __tests__ └── mainTest.js ├── android ├── .classpath ├── .project ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── eko │ ├── RNBGDTaskConfig.java │ ├── RNBackgroundDownloaderModule.java │ └── RNBackgroundDownloaderPackage.java ├── babel.config.js ├── index.js ├── ios ├── RNBGDTaskConfig.h ├── RNBackgroundDownloader.h ├── RNBackgroundDownloader.m └── RNBackgroundDownloader.xcodeproj │ └── project.pbxproj ├── lib └── downloadTask.js ├── metro.config.js ├── package.json ├── react-native-background-downloader.podspec ├── react-native.config.js ├── testApp ├── .buckconfig ├── App.js ├── Style.js ├── android │ ├── .project │ ├── app │ │ ├── .project │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── testapp │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js └── ios │ ├── testApp-tvOS │ └── Info.plist │ ├── testApp-tvOSTests │ └── Info.plist │ ├── testApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── testApp-tvOS.xcscheme │ │ └── testApp.xcscheme │ ├── testApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m │ └── testAppTests │ └── Info.plist └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/RNBackgroundDownloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/__mocks__/RNBackgroundDownloader.js -------------------------------------------------------------------------------- /__tests__/mainTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/__tests__/mainTest.js -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/.project -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/eko/RNBGDTaskConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/src/main/java/com/eko/RNBGDTaskConfig.java -------------------------------------------------------------------------------- /android/src/main/java/com/eko/RNBackgroundDownloaderModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/src/main/java/com/eko/RNBackgroundDownloaderModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/eko/RNBackgroundDownloaderPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/android/src/main/java/com/eko/RNBackgroundDownloaderPackage.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNBGDTaskConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/ios/RNBGDTaskConfig.h -------------------------------------------------------------------------------- /ios/RNBackgroundDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/ios/RNBackgroundDownloader.h -------------------------------------------------------------------------------- /ios/RNBackgroundDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/ios/RNBackgroundDownloader.m -------------------------------------------------------------------------------- /ios/RNBackgroundDownloader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/ios/RNBackgroundDownloader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lib/downloadTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/lib/downloadTask.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/package.json -------------------------------------------------------------------------------- /react-native-background-downloader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/react-native-background-downloader.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/react-native.config.js -------------------------------------------------------------------------------- /testApp/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/.buckconfig -------------------------------------------------------------------------------- /testApp/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/App.js -------------------------------------------------------------------------------- /testApp/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/Style.js -------------------------------------------------------------------------------- /testApp/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/.project -------------------------------------------------------------------------------- /testApp/android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/.project -------------------------------------------------------------------------------- /testApp/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/BUCK -------------------------------------------------------------------------------- /testApp/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/build.gradle -------------------------------------------------------------------------------- /testApp/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/build_defs.bzl -------------------------------------------------------------------------------- /testApp/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /testApp/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /testApp/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /testApp/android/app/src/main/java/com/testapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/java/com/testapp/MainActivity.java -------------------------------------------------------------------------------- /testApp/android/app/src/main/java/com/testapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/java/com/testapp/MainApplication.java -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /testApp/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /testApp/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/build.gradle -------------------------------------------------------------------------------- /testApp/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/gradle.properties -------------------------------------------------------------------------------- /testApp/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testApp/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /testApp/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/gradlew -------------------------------------------------------------------------------- /testApp/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/gradlew.bat -------------------------------------------------------------------------------- /testApp/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/keystores/BUCK -------------------------------------------------------------------------------- /testApp/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /testApp/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/android/settings.gradle -------------------------------------------------------------------------------- /testApp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/app.json -------------------------------------------------------------------------------- /testApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/index.js -------------------------------------------------------------------------------- /testApp/ios/testApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp-tvOS/Info.plist -------------------------------------------------------------------------------- /testApp/ios/testApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /testApp/ios/testApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /testApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp-tvOS.xcscheme -------------------------------------------------------------------------------- /testApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp.xcscheme -------------------------------------------------------------------------------- /testApp/ios/testApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/AppDelegate.h -------------------------------------------------------------------------------- /testApp/ios/testApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/AppDelegate.m -------------------------------------------------------------------------------- /testApp/ios/testApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /testApp/ios/testApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /testApp/ios/testApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /testApp/ios/testApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/Info.plist -------------------------------------------------------------------------------- /testApp/ios/testApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testApp/main.m -------------------------------------------------------------------------------- /testApp/ios/testAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/testApp/ios/testAppTests/Info.plist -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EkoLabs/react-native-background-downloader/HEAD/yarn.lock --------------------------------------------------------------------------------