├── .asf.yaml ├── .eslintrc.yml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── android.yml │ ├── chrome.yml │ ├── ios.yml │ └── lint.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── package.json ├── plugin.xml ├── src ├── android │ ├── FileProgressResult.java │ ├── FileTransfer.java │ └── FileUploadResult.java └── ios │ ├── CDVFileTransfer.h │ └── CDVFileTransfer.m ├── tests ├── hooks │ └── after_prepare.js ├── package.json ├── plugin.xml ├── server │ ├── index.js │ ├── package-lock.json │ └── package.json └── tests.js ├── types └── index.d.ts └── www ├── FileTransfer.js ├── FileTransferError.js └── browser └── FileTransfer.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/chrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/workflows/chrome.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | tests 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/.npmrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/FileProgressResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/src/android/FileProgressResult.java -------------------------------------------------------------------------------- /src/android/FileTransfer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/src/android/FileTransfer.java -------------------------------------------------------------------------------- /src/android/FileUploadResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/src/android/FileUploadResult.java -------------------------------------------------------------------------------- /src/ios/CDVFileTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/src/ios/CDVFileTransfer.h -------------------------------------------------------------------------------- /src/ios/CDVFileTransfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/src/ios/CDVFileTransfer.m -------------------------------------------------------------------------------- /tests/hooks/after_prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/hooks/after_prepare.js -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/server/index.js -------------------------------------------------------------------------------- /tests/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/server/package-lock.json -------------------------------------------------------------------------------- /tests/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/server/package.json -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/tests/tests.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/FileTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/www/FileTransfer.js -------------------------------------------------------------------------------- /www/FileTransferError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/www/FileTransferError.js -------------------------------------------------------------------------------- /www/browser/FileTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-file-transfer/HEAD/www/browser/FileTransfer.js --------------------------------------------------------------------------------