├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── RNFileDownload.h ├── RNFileDownload.m ├── RNFileDownload.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── RNFileDownload.xccheckout │ └── xcuserdata │ │ └── plrthink.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── plrthink.xcuserdatad │ └── xcschemes │ ├── RNFileDownload.xcscheme │ └── xcschememanagement.plist ├── RNFileDownloadSessionManager.h ├── RNFileDownloadSessionManager.m ├── index.ios.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/README.md -------------------------------------------------------------------------------- /RNFileDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.h -------------------------------------------------------------------------------- /RNFileDownload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.m -------------------------------------------------------------------------------- /RNFileDownload.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RNFileDownload.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RNFileDownload.xcodeproj/project.xcworkspace/xcshareddata/RNFileDownload.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.xcodeproj/project.xcworkspace/xcshareddata/RNFileDownload.xccheckout -------------------------------------------------------------------------------- /RNFileDownload.xcodeproj/project.xcworkspace/xcuserdata/plrthink.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.xcodeproj/project.xcworkspace/xcuserdata/plrthink.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RNFileDownload.xcodeproj/xcuserdata/plrthink.xcuserdatad/xcschemes/RNFileDownload.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.xcodeproj/xcuserdata/plrthink.xcuserdatad/xcschemes/RNFileDownload.xcscheme -------------------------------------------------------------------------------- /RNFileDownload.xcodeproj/xcuserdata/plrthink.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownload.xcodeproj/xcuserdata/plrthink.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RNFileDownloadSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownloadSessionManager.h -------------------------------------------------------------------------------- /RNFileDownloadSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/RNFileDownloadSessionManager.m -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/index.ios.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plrthink/react-native-file-download/HEAD/package.json --------------------------------------------------------------------------------