├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-issue.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── README.md ├── apply.js ├── artifact-mappings.json ├── class-mappings.json ├── package.json └── plugin.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/README.md -------------------------------------------------------------------------------- /apply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/apply.js -------------------------------------------------------------------------------- /artifact-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/artifact-mappings.json -------------------------------------------------------------------------------- /class-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/class-mappings.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-plugin-androidx-adapter/HEAD/plugin.xml --------------------------------------------------------------------------------