├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ └── java │ └── com │ └── compassheading │ ├── CompassHeadingModule.kt │ └── CompassHeadingPackage.kt ├── babel.config.js ├── example ├── .watchmanconfig ├── android │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── CompassHeadingExample-Bridging-Header.h │ ├── File.swift │ └── Podfile ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ └── App.tsx ├── ios ├── CompassHeading-Bridging-Header.h ├── CompassHeading.mm └── CompassHeading.swift ├── lefthook.yml ├── lib ├── commonjs │ ├── index.js │ └── index.js.map ├── module │ ├── index.js │ └── index.js.map └── typescript │ ├── commonjs │ ├── package.json │ └── src │ │ ├── __tests__ │ │ ├── index.test.d.ts │ │ └── index.test.d.ts.map │ │ ├── index.d.ts │ │ └── index.d.ts.map │ └── module │ ├── package.json │ └── src │ ├── __tests__ │ ├── index.test.d.ts │ └── index.test.d.ts.map │ ├── index.d.ts │ └── index.d.ts.map ├── package.json ├── react-native-compass-heading.podspec ├── src ├── __tests__ │ └── index.test.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/compassheading/CompassHeadingModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/android/src/main/java/com/compassheading/CompassHeadingModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/compassheading/CompassHeadingPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/android/src/main/java/com/compassheading/CompassHeadingPackage.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/CompassHeadingExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/ios/CompassHeadingExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /ios/CompassHeading-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/ios/CompassHeading-Bridging-Header.h -------------------------------------------------------------------------------- /ios/CompassHeading.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/ios/CompassHeading.mm -------------------------------------------------------------------------------- /ios/CompassHeading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/ios/CompassHeading.swift -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lefthook.yml -------------------------------------------------------------------------------- /lib/commonjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/commonjs/index.js -------------------------------------------------------------------------------- /lib/commonjs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/commonjs/index.js.map -------------------------------------------------------------------------------- /lib/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/module/index.js -------------------------------------------------------------------------------- /lib/module/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/module/index.js.map -------------------------------------------------------------------------------- /lib/typescript/commonjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/__tests__/index.test.d.ts: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/__tests__/index.test.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/typescript/commonjs/src/__tests__/index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/typescript/commonjs/src/index.d.ts -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/typescript/commonjs/src/index.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /lib/typescript/module/src/__tests__/index.test.d.ts: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/src/__tests__/index.test.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/typescript/module/src/__tests__/index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/typescript/module/src/index.d.ts -------------------------------------------------------------------------------- /lib/typescript/module/src/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/lib/typescript/module/src/index.d.ts.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/package.json -------------------------------------------------------------------------------- /react-native-compass-heading.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/react-native-compass-heading.podspec -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firofame/react-native-compass-heading/HEAD/yarn.lock --------------------------------------------------------------------------------