├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── compassreactnative │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-mdpi │ │ ├── assets_compass_bg.png │ │ └── assets_compass_pointer.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── compass_bg.png ├── compass_pointer.png ├── icon.png └── splash.png ├── babel.config.js ├── index.js ├── ios ├── CompassReactNative-tvOS │ └── Info.plist ├── CompassReactNative-tvOSTests │ └── Info.plist ├── CompassReactNative.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── CompassReactNative-tvOS.xcscheme │ │ └── CompassReactNative.xcscheme ├── CompassReactNative.xcworkspace │ └── contents.xcworkspacedata ├── CompassReactNative │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── CompassReactNativeTests │ ├── CompassReactNativeTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json └── screenshots └── image.png /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/compassreactnative/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/java/com/compassreactnative/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/compassreactnative/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/java/com/compassreactnative/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/assets_compass_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/drawable-mdpi/assets_compass_bg.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/assets_compass_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/drawable-mdpi/assets_compass_pointer.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/app.json -------------------------------------------------------------------------------- /assets/compass_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/assets/compass_bg.png -------------------------------------------------------------------------------- /assets/compass_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/assets/compass_pointer.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/CompassReactNative-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/CompassReactNative-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/CompassReactNative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/CompassReactNative.xcodeproj/xcshareddata/xcschemes/CompassReactNative-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative.xcodeproj/xcshareddata/xcschemes/CompassReactNative-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/CompassReactNative.xcodeproj/xcshareddata/xcschemes/CompassReactNative.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative.xcodeproj/xcshareddata/xcschemes/CompassReactNative.xcscheme -------------------------------------------------------------------------------- /ios/CompassReactNative.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/CompassReactNative/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/AppDelegate.h -------------------------------------------------------------------------------- /ios/CompassReactNative/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/AppDelegate.m -------------------------------------------------------------------------------- /ios/CompassReactNative/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/CompassReactNative/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/CompassReactNative/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/CompassReactNative/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/Info.plist -------------------------------------------------------------------------------- /ios/CompassReactNative/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNative/main.m -------------------------------------------------------------------------------- /ios/CompassReactNativeTests/CompassReactNativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNativeTests/CompassReactNativeTests.m -------------------------------------------------------------------------------- /ios/CompassReactNativeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/CompassReactNativeTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulhaque/compass-react-native/HEAD/screenshots/image.png --------------------------------------------------------------------------------