├── .babelrc ├── .buckconfig ├── .editorconfig ├── .env ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .ignite ├── .nvmrc ├── .watchmanconfig ├── App ├── Native │ ├── Components │ │ ├── CustomNavBar.js │ │ ├── DrawerButton.js │ │ ├── FullButton.js │ │ ├── MapCallout.js │ │ ├── README.md │ │ ├── RoundedButton.js │ │ └── Styles │ │ │ ├── AlertMessageStyle.js │ │ │ ├── CustomNavBarStyle.js │ │ │ ├── DrawerButtonStyles.js │ │ │ ├── FullButtonStyle.js │ │ │ ├── MapCalloutStyle.js │ │ │ ├── README.md │ │ │ └── RoundedButtonStyle.js │ ├── Config │ │ ├── AppConfig.js │ │ ├── DebugSettings.js │ │ ├── PushConfig.js │ │ ├── README.md │ │ ├── ReactotronConfig.js │ │ ├── ReduxPersist.js │ │ └── index.js │ ├── Containers │ │ ├── App.js │ │ ├── DrawerContent.js │ │ ├── LocationHistoryMapScreen.js │ │ ├── LocationHistoryScreen.js │ │ ├── LoginScreen.js │ │ ├── PresentationScreen.js │ │ ├── README.md │ │ ├── RootContainer.js │ │ └── Styles │ │ │ ├── DrawerContentStyle.js │ │ │ ├── LocationHistoryMapScreenStyle.js │ │ │ ├── LocationHistoryScreenStyle.js │ │ │ ├── LoginScreenStyle.js │ │ │ ├── README.md │ │ │ └── RootContainerStyle.js │ ├── Images │ │ ├── BG.png │ │ ├── ignite_logo.png │ │ ├── ir.png │ │ ├── tile_bg.png │ │ ├── top_logo.png │ │ ├── top_logo@2x.png │ │ └── top_logo@3x.png │ ├── Navigation │ │ ├── NavItems.js │ │ ├── NavigationDrawer.js │ │ ├── NavigationRouter.js │ │ └── Styles │ │ │ ├── NavItemsStyle.js │ │ │ ├── NavigationContainerStyle.js │ │ │ └── NavigationDrawerStyle.js │ ├── Redux │ │ ├── CreateStore.js │ │ ├── StartupNativeRedux.js │ │ └── index.js │ ├── Sagas │ │ ├── StartupNativeSagas.js │ │ └── index.js │ ├── Services │ │ ├── LocationTrackingService.js │ │ └── RehydrationServices.js │ └── Themes │ │ ├── ApplicationStyles.js │ │ ├── Colors.js │ │ ├── Fonts.js │ │ ├── Images.js │ │ ├── Metrics.js │ │ ├── README.md │ │ └── index.js ├── Shared │ ├── Config │ │ └── AppConfig.js │ ├── I18n │ │ ├── I18n.js │ │ ├── README.md │ │ ├── af.json │ │ ├── am.json │ │ ├── ar.json │ │ ├── bg.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── english.json │ │ ├── es.json │ │ ├── et.json │ │ ├── fi.json │ │ ├── fil.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── lt.json │ │ ├── lv.json │ │ ├── ms.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── platform_languages.txt │ │ ├── pt.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sr.json │ │ ├── sv.json │ │ ├── sw.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── vi.json │ │ ├── zh.json │ │ └── zu.json │ ├── Lib │ │ ├── MapHelpers.js │ │ ├── README.md │ │ └── Utilities.js │ ├── Redux │ │ ├── LocationHistoryMapRedux.js │ │ ├── LoginRedux.js │ │ ├── StartupRedux.js │ │ ├── VisitedCitiesRedux.js │ │ └── VisitedCountriesRedux.js │ ├── Sagas │ │ ├── LocationHistoryMapSagas.js │ │ ├── LoginSagas.js │ │ ├── StartupSagas.js │ │ ├── VisitedCitiesSagas.js │ │ └── VisitedCountriesSagas.js │ └── Services │ │ ├── Api.js │ │ ├── FixtureApi.js │ │ └── ImmutablePersistenceTransform.js └── Web │ ├── Components │ └── Login │ │ └── LoginForm.js │ ├── Config │ └── ReduxPersist.js │ ├── Containers │ ├── App.js │ ├── LocationHistoryScreen.js │ ├── LoginScreen.js │ ├── PlaceholderScreen.js │ └── RootContainer.js │ ├── Redux │ ├── CreateStore.js │ ├── StartupRedux.js │ └── index.js │ ├── Sagas │ └── index.js │ ├── Services │ └── RehydrationServices.js │ ├── env.js │ └── public │ ├── assets │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ └── app.js │ └── index.html ├── LICENSE ├── README.md ├── Tests ├── Native │ └── Components │ │ ├── DrawerButtonTest.js │ │ ├── FullButtonTest.js │ │ └── RoundedButtonTest.js ├── Setup.js └── Shared │ ├── Reducers │ └── LoginReducerTest.js │ ├── Sagas │ └── LoginSagaTest.js │ └── Services │ └── FixtureAPITest.js ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── traveltracker │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── fastlane ├── Appfile ├── Fastfile └── Matchfile ├── gulpfile.babel.js ├── index.android.js ├── index.ios.js ├── ios ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ ├── RNBackgroundFetch │ │ │ │ └── RNBackgroundFetch.h │ │ │ ├── RNBackgroundGeolocation │ │ │ │ └── RNBackgroundGeolocation.h │ │ │ └── React │ │ │ │ ├── CSSLayout.h │ │ │ │ ├── CSSMacros.h │ │ │ │ ├── CSSNodeList.h │ │ │ │ ├── RCTAccessibilityManager.h │ │ │ │ ├── RCTActivityIndicatorView.h │ │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ │ ├── RCTAlertManager.h │ │ │ │ ├── RCTAnimationType.h │ │ │ │ ├── RCTAppState.h │ │ │ │ ├── RCTAssert.h │ │ │ │ ├── RCTAsyncLocalStorage.h │ │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ │ ├── RCTBorderDrawing.h │ │ │ │ ├── RCTBorderStyle.h │ │ │ │ ├── RCTBridge+Private.h │ │ │ │ ├── RCTBridge.h │ │ │ │ ├── RCTBridgeDelegate.h │ │ │ │ ├── RCTBridgeMethod.h │ │ │ │ ├── RCTBridgeModule.h │ │ │ │ ├── RCTBundleURLProvider.h │ │ │ │ ├── RCTClipboard.h │ │ │ │ ├── RCTComponent.h │ │ │ │ ├── RCTComponentData.h │ │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ │ ├── RCTConvert+MapKit.h │ │ │ │ ├── RCTConvert.h │ │ │ │ ├── RCTDatePicker.h │ │ │ │ ├── RCTDatePickerManager.h │ │ │ │ ├── RCTDefines.h │ │ │ │ ├── RCTDevLoadingView.h │ │ │ │ ├── RCTDevMenu.h │ │ │ │ ├── RCTDisplayLink.h │ │ │ │ ├── RCTErrorCustomizer.h │ │ │ │ ├── RCTErrorInfo.h │ │ │ │ ├── RCTEventDispatcher.h │ │ │ │ ├── RCTEventEmitter.h │ │ │ │ ├── RCTExceptionsManager.h │ │ │ │ ├── RCTFPSGraph.h │ │ │ │ ├── RCTFont.h │ │ │ │ ├── RCTFrameUpdate.h │ │ │ │ ├── RCTI18nManager.h │ │ │ │ ├── RCTI18nUtil.h │ │ │ │ ├── RCTImageSource.h │ │ │ │ ├── RCTInvalidating.h │ │ │ │ ├── RCTJSCErrorHandling.h │ │ │ │ ├── RCTJSCExecutor.h │ │ │ │ ├── RCTJSCProfiler.h │ │ │ │ ├── RCTJSCWrapper.h │ │ │ │ ├── RCTJSStackFrame.h │ │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ │ ├── RCTJavaScriptLoader.h │ │ │ │ ├── RCTKeyCommands.h │ │ │ │ ├── RCTKeyboardObserver.h │ │ │ │ ├── RCTLog.h │ │ │ │ ├── RCTMacros.h │ │ │ │ ├── RCTMap.h │ │ │ │ ├── RCTMapAnnotation.h │ │ │ │ ├── RCTMapManager.h │ │ │ │ ├── RCTMapOverlay.h │ │ │ │ ├── RCTModalHostView.h │ │ │ │ ├── RCTModalHostViewController.h │ │ │ │ ├── RCTModalHostViewManager.h │ │ │ │ ├── RCTModuleData.h │ │ │ │ ├── RCTModuleMethod.h │ │ │ │ ├── RCTMultipartStreamReader.h │ │ │ │ ├── RCTNavItem.h │ │ │ │ ├── RCTNavItemManager.h │ │ │ │ ├── RCTNavigator.h │ │ │ │ ├── RCTNavigatorManager.h │ │ │ │ ├── RCTNullability.h │ │ │ │ ├── RCTParserUtils.h │ │ │ │ ├── RCTPerformanceLogger.h │ │ │ │ ├── RCTPicker.h │ │ │ │ ├── RCTPickerManager.h │ │ │ │ ├── RCTPointerEvents.h │ │ │ │ ├── RCTProfile.h │ │ │ │ ├── RCTProgressViewManager.h │ │ │ │ ├── RCTRedBox.h │ │ │ │ ├── RCTRefreshControl.h │ │ │ │ ├── RCTRefreshControlManager.h │ │ │ │ ├── RCTRootShadowView.h │ │ │ │ ├── RCTRootView.h │ │ │ │ ├── RCTRootViewDelegate.h │ │ │ │ ├── RCTRootViewInternal.h │ │ │ │ ├── RCTScrollView.h │ │ │ │ ├── RCTScrollViewManager.h │ │ │ │ ├── RCTScrollableProtocol.h │ │ │ │ ├── RCTSegmentedControl.h │ │ │ │ ├── RCTSegmentedControlManager.h │ │ │ │ ├── RCTShadowView.h │ │ │ │ ├── RCTSlider.h │ │ │ │ ├── RCTSliderManager.h │ │ │ │ ├── RCTSourceCode.h │ │ │ │ ├── RCTStatusBarManager.h │ │ │ │ ├── RCTSwitch.h │ │ │ │ ├── RCTSwitchManager.h │ │ │ │ ├── RCTTabBar.h │ │ │ │ ├── RCTTabBarItem.h │ │ │ │ ├── RCTTabBarItemManager.h │ │ │ │ ├── RCTTabBarManager.h │ │ │ │ ├── RCTTextDecorationLineType.h │ │ │ │ ├── RCTTiming.h │ │ │ │ ├── RCTTouchEvent.h │ │ │ │ ├── RCTTouchHandler.h │ │ │ │ ├── RCTUIManager.h │ │ │ │ ├── RCTURLRequestDelegate.h │ │ │ │ ├── RCTURLRequestHandler.h │ │ │ │ ├── RCTUtils.h │ │ │ │ ├── RCTView.h │ │ │ │ ├── RCTViewControllerProtocol.h │ │ │ │ ├── RCTViewManager.h │ │ │ │ ├── RCTWebSocketProxy.h │ │ │ │ ├── RCTWebSocketProxyDelegate.h │ │ │ │ ├── RCTWebView.h │ │ │ │ ├── RCTWebViewManager.h │ │ │ │ ├── RCTWrapperViewController.h │ │ │ │ ├── UIView+Private.h │ │ │ │ └── UIView+React.h │ │ └── Public │ │ │ ├── RNBackgroundFetch │ │ │ ├── RNBackgroundFetch.h │ │ │ └── TSBackgroundFetch │ │ │ │ └── TSBackgroundFetch.h │ │ │ ├── RNBackgroundGeolocation │ │ │ ├── RNBackgroundGeolocation.h │ │ │ └── TSLocationManager │ │ │ │ ├── LocationManager.h │ │ │ │ ├── TSLocationManager.h │ │ │ │ └── TSSchedule.h │ │ │ └── React │ │ │ ├── CSSLayout.h │ │ │ ├── CSSMacros.h │ │ │ ├── CSSNodeList.h │ │ │ ├── RCTAccessibilityManager.h │ │ │ ├── RCTActivityIndicatorView.h │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ ├── RCTAlertManager.h │ │ │ ├── RCTAnimationType.h │ │ │ ├── RCTAppState.h │ │ │ ├── RCTAssert.h │ │ │ ├── RCTAsyncLocalStorage.h │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ ├── RCTBorderDrawing.h │ │ │ ├── RCTBorderStyle.h │ │ │ ├── RCTBridge+Private.h │ │ │ ├── RCTBridge.h │ │ │ ├── RCTBridgeDelegate.h │ │ │ ├── RCTBridgeMethod.h │ │ │ ├── RCTBridgeModule.h │ │ │ ├── RCTBundleURLProvider.h │ │ │ ├── RCTClipboard.h │ │ │ ├── RCTComponent.h │ │ │ ├── RCTComponentData.h │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ ├── RCTConvert+MapKit.h │ │ │ ├── RCTConvert.h │ │ │ ├── RCTDatePicker.h │ │ │ ├── RCTDatePickerManager.h │ │ │ ├── RCTDefines.h │ │ │ ├── RCTDevLoadingView.h │ │ │ ├── RCTDevMenu.h │ │ │ ├── RCTDisplayLink.h │ │ │ ├── RCTErrorCustomizer.h │ │ │ ├── RCTErrorInfo.h │ │ │ ├── RCTEventDispatcher.h │ │ │ ├── RCTEventEmitter.h │ │ │ ├── RCTExceptionsManager.h │ │ │ ├── RCTFPSGraph.h │ │ │ ├── RCTFont.h │ │ │ ├── RCTFrameUpdate.h │ │ │ ├── RCTI18nManager.h │ │ │ ├── RCTI18nUtil.h │ │ │ ├── RCTImageSource.h │ │ │ ├── RCTInvalidating.h │ │ │ ├── RCTJSCErrorHandling.h │ │ │ ├── RCTJSCExecutor.h │ │ │ ├── RCTJSCProfiler.h │ │ │ ├── RCTJSCWrapper.h │ │ │ ├── RCTJSStackFrame.h │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ ├── RCTJavaScriptLoader.h │ │ │ ├── RCTKeyCommands.h │ │ │ ├── RCTKeyboardObserver.h │ │ │ ├── RCTLog.h │ │ │ ├── RCTMacros.h │ │ │ ├── RCTMap.h │ │ │ ├── RCTMapAnnotation.h │ │ │ ├── RCTMapManager.h │ │ │ ├── RCTMapOverlay.h │ │ │ ├── RCTModalHostView.h │ │ │ ├── RCTModalHostViewController.h │ │ │ ├── RCTModalHostViewManager.h │ │ │ ├── RCTModuleData.h │ │ │ ├── RCTModuleMethod.h │ │ │ ├── RCTMultipartStreamReader.h │ │ │ ├── RCTNavItem.h │ │ │ ├── RCTNavItemManager.h │ │ │ ├── RCTNavigator.h │ │ │ ├── RCTNavigatorManager.h │ │ │ ├── RCTNullability.h │ │ │ ├── RCTParserUtils.h │ │ │ ├── RCTPerformanceLogger.h │ │ │ ├── RCTPicker.h │ │ │ ├── RCTPickerManager.h │ │ │ ├── RCTPointerEvents.h │ │ │ ├── RCTProfile.h │ │ │ ├── RCTProgressViewManager.h │ │ │ ├── RCTRedBox.h │ │ │ ├── RCTRefreshControl.h │ │ │ ├── RCTRefreshControlManager.h │ │ │ ├── RCTRootShadowView.h │ │ │ ├── RCTRootView.h │ │ │ ├── RCTRootViewDelegate.h │ │ │ ├── RCTRootViewInternal.h │ │ │ ├── RCTScrollView.h │ │ │ ├── RCTScrollViewManager.h │ │ │ ├── RCTScrollableProtocol.h │ │ │ ├── RCTSegmentedControl.h │ │ │ ├── RCTSegmentedControlManager.h │ │ │ ├── RCTShadowView.h │ │ │ ├── RCTSlider.h │ │ │ ├── RCTSliderManager.h │ │ │ ├── RCTSourceCode.h │ │ │ ├── RCTStatusBarManager.h │ │ │ ├── RCTSwitch.h │ │ │ ├── RCTSwitchManager.h │ │ │ ├── RCTTabBar.h │ │ │ ├── RCTTabBarItem.h │ │ │ ├── RCTTabBarItemManager.h │ │ │ ├── RCTTabBarManager.h │ │ │ ├── RCTTextDecorationLineType.h │ │ │ ├── RCTTiming.h │ │ │ ├── RCTTouchEvent.h │ │ │ ├── RCTTouchHandler.h │ │ │ ├── RCTUIManager.h │ │ │ ├── RCTURLRequestDelegate.h │ │ │ ├── RCTURLRequestHandler.h │ │ │ ├── RCTUtils.h │ │ │ ├── RCTView.h │ │ │ ├── RCTViewControllerProtocol.h │ │ │ ├── RCTViewManager.h │ │ │ ├── RCTWebSocketProxy.h │ │ │ ├── RCTWebSocketProxyDelegate.h │ │ │ ├── RCTWebView.h │ │ │ ├── RCTWebViewManager.h │ │ │ ├── RCTWrapperViewController.h │ │ │ ├── UIView+Private.h │ │ │ └── UIView+React.h │ ├── Local Podspecs │ │ ├── RNBackgroundFetch.podspec.json │ │ ├── RNBackgroundGeolocation.podspec.json │ │ └── React.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-TravelTracker │ │ ├── Pods-TravelTracker-acknowledgements.markdown │ │ ├── Pods-TravelTracker-acknowledgements.plist │ │ ├── Pods-TravelTracker-dummy.m │ │ ├── Pods-TravelTracker-frameworks.sh │ │ ├── Pods-TravelTracker-resources.sh │ │ ├── Pods-TravelTracker.debug.xcconfig │ │ └── Pods-TravelTracker.release.xcconfig │ │ ├── RNBackgroundFetch │ │ ├── RNBackgroundFetch-dummy.m │ │ ├── RNBackgroundFetch-prefix.pch │ │ └── RNBackgroundFetch.xcconfig │ │ ├── RNBackgroundGeolocation │ │ ├── RNBackgroundGeolocation-dummy.m │ │ ├── RNBackgroundGeolocation-prefix.pch │ │ └── RNBackgroundGeolocation.xcconfig │ │ └── React │ │ ├── React-dummy.m │ │ ├── React-prefix.pch │ │ └── React.xcconfig ├── TravelTracker-tvOS │ └── Info.plist ├── TravelTracker-tvOSTests │ └── Info.plist ├── TravelTracker.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── TravelTracker-tvOS.xcscheme │ │ └── TravelTracker.xcscheme ├── TravelTracker.xcworkspace │ └── contents.xcworkspacedata ├── TravelTracker │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── TravelTrackerTests │ ├── Info.plist │ └── TravelTrackerTests.m ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | # Your secrets go here e.g. 2 | # MY_SECRET_API_KEY=tacosareawesome -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/.ignite -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 4.4.5 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App/Native/Components/CustomNavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/CustomNavBar.js -------------------------------------------------------------------------------- /App/Native/Components/DrawerButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/DrawerButton.js -------------------------------------------------------------------------------- /App/Native/Components/FullButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/FullButton.js -------------------------------------------------------------------------------- /App/Native/Components/MapCallout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/MapCallout.js -------------------------------------------------------------------------------- /App/Native/Components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/README.md -------------------------------------------------------------------------------- /App/Native/Components/RoundedButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/RoundedButton.js -------------------------------------------------------------------------------- /App/Native/Components/Styles/AlertMessageStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/AlertMessageStyle.js -------------------------------------------------------------------------------- /App/Native/Components/Styles/CustomNavBarStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/CustomNavBarStyle.js -------------------------------------------------------------------------------- /App/Native/Components/Styles/DrawerButtonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/DrawerButtonStyles.js -------------------------------------------------------------------------------- /App/Native/Components/Styles/FullButtonStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/FullButtonStyle.js -------------------------------------------------------------------------------- /App/Native/Components/Styles/MapCalloutStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/MapCalloutStyle.js -------------------------------------------------------------------------------- /App/Native/Components/Styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/README.md -------------------------------------------------------------------------------- /App/Native/Components/Styles/RoundedButtonStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Components/Styles/RoundedButtonStyle.js -------------------------------------------------------------------------------- /App/Native/Config/AppConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/AppConfig.js -------------------------------------------------------------------------------- /App/Native/Config/DebugSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/DebugSettings.js -------------------------------------------------------------------------------- /App/Native/Config/PushConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/PushConfig.js -------------------------------------------------------------------------------- /App/Native/Config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/README.md -------------------------------------------------------------------------------- /App/Native/Config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/ReactotronConfig.js -------------------------------------------------------------------------------- /App/Native/Config/ReduxPersist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/ReduxPersist.js -------------------------------------------------------------------------------- /App/Native/Config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Config/index.js -------------------------------------------------------------------------------- /App/Native/Containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/App.js -------------------------------------------------------------------------------- /App/Native/Containers/DrawerContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/DrawerContent.js -------------------------------------------------------------------------------- /App/Native/Containers/LocationHistoryMapScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/LocationHistoryMapScreen.js -------------------------------------------------------------------------------- /App/Native/Containers/LocationHistoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/LocationHistoryScreen.js -------------------------------------------------------------------------------- /App/Native/Containers/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/LoginScreen.js -------------------------------------------------------------------------------- /App/Native/Containers/PresentationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/PresentationScreen.js -------------------------------------------------------------------------------- /App/Native/Containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/README.md -------------------------------------------------------------------------------- /App/Native/Containers/RootContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/RootContainer.js -------------------------------------------------------------------------------- /App/Native/Containers/Styles/DrawerContentStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/Styles/DrawerContentStyle.js -------------------------------------------------------------------------------- /App/Native/Containers/Styles/LocationHistoryMapScreenStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/Styles/LocationHistoryMapScreenStyle.js -------------------------------------------------------------------------------- /App/Native/Containers/Styles/LocationHistoryScreenStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/Styles/LocationHistoryScreenStyle.js -------------------------------------------------------------------------------- /App/Native/Containers/Styles/LoginScreenStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/Styles/LoginScreenStyle.js -------------------------------------------------------------------------------- /App/Native/Containers/Styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/Styles/README.md -------------------------------------------------------------------------------- /App/Native/Containers/Styles/RootContainerStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Containers/Styles/RootContainerStyle.js -------------------------------------------------------------------------------- /App/Native/Images/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/BG.png -------------------------------------------------------------------------------- /App/Native/Images/ignite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/ignite_logo.png -------------------------------------------------------------------------------- /App/Native/Images/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/ir.png -------------------------------------------------------------------------------- /App/Native/Images/tile_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/tile_bg.png -------------------------------------------------------------------------------- /App/Native/Images/top_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/top_logo.png -------------------------------------------------------------------------------- /App/Native/Images/top_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/top_logo@2x.png -------------------------------------------------------------------------------- /App/Native/Images/top_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Images/top_logo@3x.png -------------------------------------------------------------------------------- /App/Native/Navigation/NavItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Navigation/NavItems.js -------------------------------------------------------------------------------- /App/Native/Navigation/NavigationDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Navigation/NavigationDrawer.js -------------------------------------------------------------------------------- /App/Native/Navigation/NavigationRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Navigation/NavigationRouter.js -------------------------------------------------------------------------------- /App/Native/Navigation/Styles/NavItemsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Navigation/Styles/NavItemsStyle.js -------------------------------------------------------------------------------- /App/Native/Navigation/Styles/NavigationContainerStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Navigation/Styles/NavigationContainerStyle.js -------------------------------------------------------------------------------- /App/Native/Navigation/Styles/NavigationDrawerStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Navigation/Styles/NavigationDrawerStyle.js -------------------------------------------------------------------------------- /App/Native/Redux/CreateStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Redux/CreateStore.js -------------------------------------------------------------------------------- /App/Native/Redux/StartupNativeRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Redux/StartupNativeRedux.js -------------------------------------------------------------------------------- /App/Native/Redux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Redux/index.js -------------------------------------------------------------------------------- /App/Native/Sagas/StartupNativeSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Sagas/StartupNativeSagas.js -------------------------------------------------------------------------------- /App/Native/Sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Sagas/index.js -------------------------------------------------------------------------------- /App/Native/Services/LocationTrackingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Services/LocationTrackingService.js -------------------------------------------------------------------------------- /App/Native/Services/RehydrationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Services/RehydrationServices.js -------------------------------------------------------------------------------- /App/Native/Themes/ApplicationStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/ApplicationStyles.js -------------------------------------------------------------------------------- /App/Native/Themes/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/Colors.js -------------------------------------------------------------------------------- /App/Native/Themes/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/Fonts.js -------------------------------------------------------------------------------- /App/Native/Themes/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/Images.js -------------------------------------------------------------------------------- /App/Native/Themes/Metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/Metrics.js -------------------------------------------------------------------------------- /App/Native/Themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/README.md -------------------------------------------------------------------------------- /App/Native/Themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Native/Themes/index.js -------------------------------------------------------------------------------- /App/Shared/Config/AppConfig.js: -------------------------------------------------------------------------------- 1 | export default { 2 | baseUrl: 'http://localhost:3000/' 3 | } 4 | -------------------------------------------------------------------------------- /App/Shared/I18n/I18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/I18n/I18n.js -------------------------------------------------------------------------------- /App/Shared/I18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/I18n/README.md -------------------------------------------------------------------------------- /App/Shared/I18n/af.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/am.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ar.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/bg.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ca.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/cs.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/da.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/de.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/el.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/I18n/english.json -------------------------------------------------------------------------------- /App/Shared/I18n/es.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/et.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/fi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/fil.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/I18n/fr.json -------------------------------------------------------------------------------- /App/Shared/I18n/he.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/hi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/hr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/hu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/id.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/it.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ja.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ko.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/lt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/lv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ms.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/nb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/nl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/no.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/platform_languages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/I18n/platform_languages.txt -------------------------------------------------------------------------------- /App/Shared/I18n/pt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ro.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/sk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/sl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/sr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/sv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/sw.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/th.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/vi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/zh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/I18n/zu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App/Shared/Lib/MapHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Lib/MapHelpers.js -------------------------------------------------------------------------------- /App/Shared/Lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Lib/README.md -------------------------------------------------------------------------------- /App/Shared/Lib/Utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Lib/Utilities.js -------------------------------------------------------------------------------- /App/Shared/Redux/LocationHistoryMapRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Redux/LocationHistoryMapRedux.js -------------------------------------------------------------------------------- /App/Shared/Redux/LoginRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Redux/LoginRedux.js -------------------------------------------------------------------------------- /App/Shared/Redux/StartupRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Redux/StartupRedux.js -------------------------------------------------------------------------------- /App/Shared/Redux/VisitedCitiesRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Redux/VisitedCitiesRedux.js -------------------------------------------------------------------------------- /App/Shared/Redux/VisitedCountriesRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Redux/VisitedCountriesRedux.js -------------------------------------------------------------------------------- /App/Shared/Sagas/LocationHistoryMapSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Sagas/LocationHistoryMapSagas.js -------------------------------------------------------------------------------- /App/Shared/Sagas/LoginSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Sagas/LoginSagas.js -------------------------------------------------------------------------------- /App/Shared/Sagas/StartupSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Sagas/StartupSagas.js -------------------------------------------------------------------------------- /App/Shared/Sagas/VisitedCitiesSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Sagas/VisitedCitiesSagas.js -------------------------------------------------------------------------------- /App/Shared/Sagas/VisitedCountriesSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Sagas/VisitedCountriesSagas.js -------------------------------------------------------------------------------- /App/Shared/Services/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Services/Api.js -------------------------------------------------------------------------------- /App/Shared/Services/FixtureApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Services/FixtureApi.js -------------------------------------------------------------------------------- /App/Shared/Services/ImmutablePersistenceTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Shared/Services/ImmutablePersistenceTransform.js -------------------------------------------------------------------------------- /App/Web/Components/Login/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Components/Login/LoginForm.js -------------------------------------------------------------------------------- /App/Web/Config/ReduxPersist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Config/ReduxPersist.js -------------------------------------------------------------------------------- /App/Web/Containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Containers/App.js -------------------------------------------------------------------------------- /App/Web/Containers/LocationHistoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Containers/LocationHistoryScreen.js -------------------------------------------------------------------------------- /App/Web/Containers/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Containers/LoginScreen.js -------------------------------------------------------------------------------- /App/Web/Containers/PlaceholderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Containers/PlaceholderScreen.js -------------------------------------------------------------------------------- /App/Web/Containers/RootContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Containers/RootContainer.js -------------------------------------------------------------------------------- /App/Web/Redux/CreateStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Redux/CreateStore.js -------------------------------------------------------------------------------- /App/Web/Redux/StartupRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Redux/StartupRedux.js -------------------------------------------------------------------------------- /App/Web/Redux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Redux/index.js -------------------------------------------------------------------------------- /App/Web/Sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Sagas/index.js -------------------------------------------------------------------------------- /App/Web/Services/RehydrationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/Services/RehydrationServices.js -------------------------------------------------------------------------------- /App/Web/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/env.js -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap.css -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /App/Web/public/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /App/Web/public/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /App/Web/public/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /App/Web/public/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /App/Web/public/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /App/Web/public/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /App/Web/public/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/assets/js/app.js -------------------------------------------------------------------------------- /App/Web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/App/Web/public/index.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Native/Components/DrawerButtonTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Native/Components/DrawerButtonTest.js -------------------------------------------------------------------------------- /Tests/Native/Components/FullButtonTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Native/Components/FullButtonTest.js -------------------------------------------------------------------------------- /Tests/Native/Components/RoundedButtonTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Native/Components/RoundedButtonTest.js -------------------------------------------------------------------------------- /Tests/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Setup.js -------------------------------------------------------------------------------- /Tests/Shared/Reducers/LoginReducerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Shared/Reducers/LoginReducerTest.js -------------------------------------------------------------------------------- /Tests/Shared/Sagas/LoginSagaTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Shared/Sagas/LoginSagaTest.js -------------------------------------------------------------------------------- /Tests/Shared/Services/FixtureAPITest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/Tests/Shared/Services/FixtureAPITest.js -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/traveltracker/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/java/com/traveltracker/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/traveltracker/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/java/com/traveltracker/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/app.json -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/RNBackgroundFetch/RNBackgroundFetch.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-background-fetch/ios/RNBackgroundFetch/RNBackgroundFetch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/RNBackgroundGeolocation/RNBackgroundGeolocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-background-geolocation/ios/RNBackgroundGeolocation/RNBackgroundGeolocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/CSSLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/CSSLayout/CSSLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/CSSMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/CSSLayout/CSSMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/CSSNodeList.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/CSSLayout/CSSNodeList.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAccessibilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTActivityIndicatorViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAnimationType.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTAnimationType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAppState.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAppState.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAssert.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAsyncLocalStorage.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTAutoInsetsProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBorderDrawing.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBorderStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBridge+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBridge.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBridgeMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBridgeModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTBundleURLProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTClipboard.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTClipboard.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTComponentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTComponentData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTConvert+CoreLocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTConvert+MapKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTConvert+MapKit.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTDatePicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTDatePickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTDevLoadingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTDevLoadingView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTDevMenu.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTDevMenu.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTErrorInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTEventDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTEventEmitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTExceptionsManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTFPSGraph.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTFont.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTFrameUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTI18nManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTI18nUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTImageSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTInvalidating.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJSCErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Executors/RCTJSCErrorHandling.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJSCExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Executors/RCTJSCExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJSCProfiler.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTJSCProfiler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJSCWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Executors/RCTJSCWrapper.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJavaScriptExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTKeyCommands.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTKeyboardObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTLog.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTMap.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMap.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTMapAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMapAnnotation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTMapManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMapManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTMapOverlay.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMapOverlay.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTModalHostView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTModalHostView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTModalHostViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTModalHostViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTModuleData.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTModuleMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTMultipartStreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTNavItem.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavItem.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTNavItemManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavItemManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTNavigator.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavigator.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTNavigatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavigatorManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTNullability.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTParserUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTPerformanceLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTPicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTPicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTPickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTPickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTPointerEvents.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTProfile.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTProgressViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRedBox.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTRedBox.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRefreshControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRefreshControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTRootViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTScrollViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTScrollViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTScrollableProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTScrollableProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSegmentedControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSlider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSliderManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSliderManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSourceCode.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTStatusBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTSwitchManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTabBar.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBar.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTabBarItem.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBarItem.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTabBarItemManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBarItemManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTabBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTextDecorationLineType.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTiming.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTTiming.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTouchEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTTouchHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTUIManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTURLRequestDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTURLRequestHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTViewControllerProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTViewControllerProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTWebSocketProxy.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTWebSocketProxy.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTWebSocketProxyDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTWebSocketProxyDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/RCTWrapperViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/UIView+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/UIView+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNBackgroundFetch/RNBackgroundFetch.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-background-fetch/ios/RNBackgroundFetch/RNBackgroundFetch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNBackgroundFetch/TSBackgroundFetch/TSBackgroundFetch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-background-fetch/ios/RNBackgroundFetch/TSBackgroundFetch.framework/Headers/TSBackgroundFetch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNBackgroundGeolocation/RNBackgroundGeolocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-background-geolocation/ios/RNBackgroundGeolocation/RNBackgroundGeolocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNBackgroundGeolocation/TSLocationManager/LocationManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-background-geolocation/ios/RNBackgroundGeolocation/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNBackgroundGeolocation/TSLocationManager/TSLocationManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-background-geolocation/ios/RNBackgroundGeolocation/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNBackgroundGeolocation/TSLocationManager/TSSchedule.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-background-geolocation/ios/RNBackgroundGeolocation/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/CSSLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/CSSLayout/CSSLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/CSSMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/CSSLayout/CSSMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/CSSNodeList.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/CSSLayout/CSSNodeList.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAccessibilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTActivityIndicatorViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAnimationType.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTAnimationType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAppState.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAppState.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAssert.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAsyncLocalStorage.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTAutoInsetsProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBorderDrawing.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBorderStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBridge+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBridge.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBridgeMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBridgeModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTBundleURLProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTClipboard.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTClipboard.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTComponentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTComponentData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTConvert+CoreLocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTConvert+MapKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTConvert+MapKit.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTDatePicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTDatePickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTDevLoadingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTDevLoadingView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTDevMenu.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTDevMenu.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTErrorInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTEventDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTEventEmitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTExceptionsManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTFPSGraph.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTFont.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTFrameUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTI18nManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTI18nUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTImageSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTInvalidating.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJSCErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Executors/RCTJSCErrorHandling.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJSCExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Executors/RCTJSCExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJSCProfiler.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTJSCProfiler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJSCWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Executors/RCTJSCWrapper.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJavaScriptExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTKeyCommands.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTKeyboardObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTLog.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTMap.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMap.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTMapAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMapAnnotation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTMapManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMapManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTMapOverlay.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTMapOverlay.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTModalHostView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTModalHostView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTModalHostViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTModalHostViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTModuleData.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTModuleMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTMultipartStreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTNavItem.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavItem.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTNavItemManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavItemManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTNavigator.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavigator.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTNavigatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTNavigatorManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTNullability.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTParserUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTPerformanceLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTPicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTPicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTPickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTPickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTPointerEvents.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTProfile.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTProgressViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRedBox.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTRedBox.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRefreshControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRefreshControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTRootViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTScrollViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTScrollViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTScrollableProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTScrollableProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSegmentedControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSlider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSliderManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSliderManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSourceCode.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTStatusBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTSwitchManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTabBar.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBar.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTabBarItem.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBarItem.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTabBarItemManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBarItemManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTabBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTabBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTextDecorationLineType.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTiming.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTTiming.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTouchEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTTouchHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTUIManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTURLRequestDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTURLRequestHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTViewControllerProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTViewControllerProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTWebSocketProxy.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTWebSocketProxy.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTWebSocketProxyDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Base/RCTWebSocketProxyDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/RCTWrapperViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/UIView+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/UIView+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/RNBackgroundFetch.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Local Podspecs/RNBackgroundFetch.podspec.json -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/RNBackgroundGeolocation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Local Podspecs/RNBackgroundGeolocation.podspec.json -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/React.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Local Podspecs/React.podspec.json -------------------------------------------------------------------------------- /ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-acknowledgements.markdown -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-acknowledgements.plist -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-dummy.m -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-frameworks.sh -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker-resources.sh -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker.debug.xcconfig -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/Pods-TravelTracker/Pods-TravelTracker.release.xcconfig -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNBackgroundFetch/RNBackgroundFetch-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/RNBackgroundFetch/RNBackgroundFetch-dummy.m -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNBackgroundFetch/RNBackgroundFetch-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/RNBackgroundFetch/RNBackgroundFetch-prefix.pch -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNBackgroundFetch/RNBackgroundFetch.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/RNBackgroundFetch/RNBackgroundFetch.xcconfig -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNBackgroundGeolocation/RNBackgroundGeolocation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/RNBackgroundGeolocation/RNBackgroundGeolocation-dummy.m -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNBackgroundGeolocation/RNBackgroundGeolocation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/RNBackgroundGeolocation/RNBackgroundGeolocation-prefix.pch -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNBackgroundGeolocation/RNBackgroundGeolocation.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/RNBackgroundGeolocation/RNBackgroundGeolocation.xcconfig -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/React/React-dummy.m -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/React/React-prefix.pch -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/Pods/Target Support Files/React/React.xcconfig -------------------------------------------------------------------------------- /ios/TravelTracker-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/TravelTracker-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/TravelTracker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/TravelTracker.xcodeproj/xcshareddata/xcschemes/TravelTracker-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker.xcodeproj/xcshareddata/xcschemes/TravelTracker-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/TravelTracker.xcodeproj/xcshareddata/xcschemes/TravelTracker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker.xcodeproj/xcshareddata/xcschemes/TravelTracker.xcscheme -------------------------------------------------------------------------------- /ios/TravelTracker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/TravelTracker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker/AppDelegate.h -------------------------------------------------------------------------------- /ios/TravelTracker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker/AppDelegate.m -------------------------------------------------------------------------------- /ios/TravelTracker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/TravelTracker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/TravelTracker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker/Info.plist -------------------------------------------------------------------------------- /ios/TravelTracker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTracker/main.m -------------------------------------------------------------------------------- /ios/TravelTrackerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTrackerTests/Info.plist -------------------------------------------------------------------------------- /ios/TravelTrackerTests/TravelTrackerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/ios/TravelTrackerTests/TravelTrackerTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TalkingQuickly/location_tracker_app/HEAD/yarn.lock --------------------------------------------------------------------------------