├── .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 ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── package.json ├── plugin.xml ├── src ├── android │ └── CompassListener.java ├── browser │ └── CompassProxy.js ├── ios │ ├── CDVCompass.h │ └── CDVCompass.m └── windows │ └── CompassProxy.js ├── tests ├── package.json ├── plugin.xml └── tests.js ├── types └── index.d.ts └── www ├── CompassError.js ├── CompassHeading.js └── compass.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/chrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/workflows/chrome.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | tests 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/CompassListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/src/android/CompassListener.java -------------------------------------------------------------------------------- /src/browser/CompassProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/src/browser/CompassProxy.js -------------------------------------------------------------------------------- /src/ios/CDVCompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/src/ios/CDVCompass.h -------------------------------------------------------------------------------- /src/ios/CDVCompass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/src/ios/CDVCompass.m -------------------------------------------------------------------------------- /src/windows/CompassProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/src/windows/CompassProxy.js -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/tests/tests.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/CompassError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/www/CompassError.js -------------------------------------------------------------------------------- /www/CompassHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/www/CompassHeading.js -------------------------------------------------------------------------------- /www/compass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device-orientation/HEAD/www/compass.js --------------------------------------------------------------------------------