├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug.yml │ └── 2-help-wanted.yml ├── stale.yml └── workflows │ └── stale.yaml ├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── background_geolocation.gradle ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs │ └── com │ │ └── transistorsoft │ │ ├── tslocationmanager-v21 │ │ ├── 3.7.0 │ │ │ ├── tslocationmanager-v21-3.7.0.aar │ │ │ ├── tslocationmanager-v21-3.7.0.aar.md5 │ │ │ ├── tslocationmanager-v21-3.7.0.aar.sha1 │ │ │ ├── tslocationmanager-v21-3.7.0.aar.sha256 │ │ │ ├── tslocationmanager-v21-3.7.0.aar.sha512 │ │ │ ├── tslocationmanager-v21-3.7.0.pom │ │ │ ├── tslocationmanager-v21-3.7.0.pom.md5 │ │ │ ├── tslocationmanager-v21-3.7.0.pom.sha1 │ │ │ ├── tslocationmanager-v21-3.7.0.pom.sha256 │ │ │ └── tslocationmanager-v21-3.7.0.pom.sha512 │ │ └── maven-metadata.xml │ │ └── tslocationmanager │ │ ├── 3.7.0 │ │ ├── tslocationmanager-3.7.0.aar │ │ ├── tslocationmanager-3.7.0.aar.md5 │ │ ├── tslocationmanager-3.7.0.aar.sha1 │ │ ├── tslocationmanager-3.7.0.aar.sha256 │ │ ├── tslocationmanager-3.7.0.aar.sha512 │ │ ├── tslocationmanager-3.7.0.pom │ │ ├── tslocationmanager-3.7.0.pom.md5 │ │ ├── tslocationmanager-3.7.0.pom.sha1 │ │ ├── tslocationmanager-3.7.0.pom.sha256 │ │ └── tslocationmanager-3.7.0.pom.sha512 │ │ └── maven-metadata.xml ├── proguard-rules.pro ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── transistorsoft │ └── flutter │ └── backgroundgeolocation │ ├── BackgroundGeolocationModule.java │ ├── FLTBackgroundGeolocationPlugin.java │ ├── HeadlessTask.java │ └── streams │ ├── ActivityChangeStreamHandler.java │ ├── AuthorizationStreamHandler.java │ ├── ConnectivityChangeStreamHandler.java │ ├── EnabledChangeStreamHandler.java │ ├── GeofenceStreamHandler.java │ ├── GeofencesChangeStreamHandler.java │ ├── HeartbeatStreamHandler.java │ ├── HttpStreamHandler.java │ ├── LocationStreamHandler.java │ ├── MotionChangeStreamHandler.java │ ├── NotificationActionStreamHandler.java │ ├── PowerSaveChangeStreamHandler.java │ ├── ProviderChangeStreamHandler.java │ ├── ScheduleStreamHandler.java │ └── StreamHandler.java ├── dartdoc_options.yaml.bak ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── transistorsoft │ │ │ │ │ └── flutterbackgroundgeolocationexample │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── layout │ │ │ │ └── notification_layout.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle.kts ├── assets │ └── images │ │ └── markers │ │ ├── bluedot.png │ │ ├── geofence-event-edge-circle-dwell.png │ │ ├── geofence-event-edge-circle-dwell@3x.png │ │ ├── geofence-event-edge-circle-enter.png │ │ ├── geofence-event-edge-circle-enter@3x.png │ │ ├── geofence-event-edge-circle-exit.png │ │ ├── geofence-event-edge-circle-exit@3x.png │ │ ├── location-arrow-amber.png │ │ ├── location-arrow-amber@3x.png │ │ ├── location-arrow-blue.png │ │ ├── location-arrow-blue@3x.png │ │ ├── location-arrow-green.png │ │ ├── location-arrow-green@3x.png │ │ ├── location-arrow-red.png │ │ └── location-arrow-red@3x.png ├── ios │ ├── .gitignore │ ├── CityDrive.gpx │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift ├── lib │ ├── advanced │ │ ├── actions.dart │ │ ├── app.dart │ │ ├── event_list.dart │ │ ├── geofence_view.dart │ │ ├── home_view.dart │ │ ├── main_menu_button.dart │ │ ├── map_view.dart │ │ ├── settings_view.dart │ │ ├── shared_events.dart │ │ └── util │ │ │ ├── dialog.dart │ │ │ ├── geospatial.dart │ │ │ └── test.dart │ ├── app.dart │ ├── config │ │ ├── env.dart │ │ └── transistor_auth.dart │ ├── hello_world │ │ └── app.dart │ ├── main.dart │ └── registration_view.dart ├── pubspec.yaml ├── scripts │ ├── adb-install.sh │ ├── pull-geofences │ ├── pull-logback │ ├── release │ ├── simulate-fetch.sh │ └── test.sh └── test │ └── widget_test.dart ├── help ├── INSTALL-ANDROID.md └── INSTALL-IOS.md ├── ios ├── .gitignore ├── flutter_background_geolocation.podspec └── flutter_background_geolocation │ ├── Frameworks │ └── TSLocationManager.xcframework │ │ ├── Info.plist │ │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ │ ├── ios-arm64 │ │ └── TSLocationManager.framework │ │ │ ├── Headers │ │ │ ├── AtomicBoolean.h │ │ │ ├── ConfigModule.h │ │ │ ├── HttpRequest.h │ │ │ ├── HttpResponse.h │ │ │ ├── LocationManager.h │ │ │ ├── LogQuery.h │ │ │ ├── SOMotionDetector.h │ │ │ ├── SQLQuery.h │ │ │ ├── TSActivityChangeEvent.h │ │ │ ├── TSAuthorization.h │ │ │ ├── TSAuthorizationEvent.h │ │ │ ├── TSCallback.h │ │ │ ├── TSConfig.h │ │ │ ├── TSConnectivityChangeEvent.h │ │ │ ├── TSCurrentPositionRequest.h │ │ │ ├── TSDeviceInfo.h │ │ │ ├── TSEnabledChangeEvent.h │ │ │ ├── TSGeofence.h │ │ │ ├── TSGeofenceEvent.h │ │ │ ├── TSGeofenceManager.h │ │ │ ├── TSGeofencesChangeEvent.h │ │ │ ├── TSHeartbeatEvent.h │ │ │ ├── TSHttpEvent.h │ │ │ ├── TSHttpService.h │ │ │ ├── TSLocation.h │ │ │ ├── TSLocationManager.h │ │ │ ├── TSPowerSaveChangeEvent.h │ │ │ ├── TSProviderChangeEvent.h │ │ │ ├── TSReachability.h │ │ │ ├── TSSchedule.h │ │ │ ├── TSScheduleEvent.h │ │ │ ├── TSWatchPositionRequest.h │ │ │ └── TransistorAuthorizationToken.h │ │ │ ├── Info.plist │ │ │ ├── Miniball │ │ │ └── Miniball.hpp │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── TSLocationManager │ │ │ └── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ ├── ios-arm64_x86_64-maccatalyst │ │ └── TSLocationManager.framework │ │ │ ├── Headers │ │ │ ├── AtomicBoolean.h │ │ │ ├── ConfigModule.h │ │ │ ├── HttpRequest.h │ │ │ ├── HttpResponse.h │ │ │ ├── LocationManager.h │ │ │ ├── LogQuery.h │ │ │ ├── SOMotionDetector.h │ │ │ ├── SQLQuery.h │ │ │ ├── TSActivityChangeEvent.h │ │ │ ├── TSAuthorization.h │ │ │ ├── TSAuthorizationEvent.h │ │ │ ├── TSCallback.h │ │ │ ├── TSConfig.h │ │ │ ├── TSConnectivityChangeEvent.h │ │ │ ├── TSCurrentPositionRequest.h │ │ │ ├── TSDeviceInfo.h │ │ │ ├── TSEnabledChangeEvent.h │ │ │ ├── TSGeofence.h │ │ │ ├── TSGeofenceEvent.h │ │ │ ├── TSGeofenceManager.h │ │ │ ├── TSGeofencesChangeEvent.h │ │ │ ├── TSHeartbeatEvent.h │ │ │ ├── TSHttpEvent.h │ │ │ ├── TSHttpService.h │ │ │ ├── TSLocation.h │ │ │ ├── TSLocationManager.h │ │ │ ├── TSPowerSaveChangeEvent.h │ │ │ ├── TSProviderChangeEvent.h │ │ │ ├── TSReachability.h │ │ │ ├── TSSchedule.h │ │ │ ├── TSScheduleEvent.h │ │ │ ├── TSWatchPositionRequest.h │ │ │ └── TransistorAuthorizationToken.h │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── Miniball │ │ │ │ └── Miniball.hpp │ │ │ └── PrivacyInfo.xcprivacy │ │ │ ├── TSLocationManager │ │ │ └── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ └── ios-arm64_x86_64-simulator │ │ └── TSLocationManager.framework │ │ ├── Headers │ │ ├── AtomicBoolean.h │ │ ├── ConfigModule.h │ │ ├── HttpRequest.h │ │ ├── HttpResponse.h │ │ ├── LocationManager.h │ │ ├── LogQuery.h │ │ ├── SOMotionDetector.h │ │ ├── SQLQuery.h │ │ ├── TSActivityChangeEvent.h │ │ ├── TSAuthorization.h │ │ ├── TSAuthorizationEvent.h │ │ ├── TSCallback.h │ │ ├── TSConfig.h │ │ ├── TSConnectivityChangeEvent.h │ │ ├── TSCurrentPositionRequest.h │ │ ├── TSDeviceInfo.h │ │ ├── TSEnabledChangeEvent.h │ │ ├── TSGeofence.h │ │ ├── TSGeofenceEvent.h │ │ ├── TSGeofenceManager.h │ │ ├── TSGeofencesChangeEvent.h │ │ ├── TSHeartbeatEvent.h │ │ ├── TSHttpEvent.h │ │ ├── TSHttpService.h │ │ ├── TSLocation.h │ │ ├── TSLocationManager.h │ │ ├── TSPowerSaveChangeEvent.h │ │ ├── TSProviderChangeEvent.h │ │ ├── TSReachability.h │ │ ├── TSSchedule.h │ │ ├── TSScheduleEvent.h │ │ ├── TSWatchPositionRequest.h │ │ └── TransistorAuthorizationToken.h │ │ ├── Info.plist │ │ ├── Miniball │ │ └── Miniball.hpp │ │ ├── Modules │ │ └── module.modulemap │ │ ├── PrivacyInfo.xcprivacy │ │ ├── TSLocationManager │ │ └── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── Package.swift │ └── Sources │ └── flutter_background_geolocation │ ├── PrivacyInfo.xcprivacy │ ├── TSActivityChangeStreamHandler.m │ ├── TSAuthorizationStreamHandler.m │ ├── TSBackgroundGeolocationPlugin.m │ ├── TSBackgroundGeolocationStreamHandler.m │ ├── TSConnectivityChangeStreamHandler.m │ ├── TSEnabledChangeStreamHandler.m │ ├── TSGeofenceStreamHandler.m │ ├── TSGeofencesChangeStreamHandler.m │ ├── TSHeartbeatStreamHandler.m │ ├── TSHttpStreamHandler.m │ ├── TSLocationStreamHandler.m │ ├── TSMotionChangeStreamHandler.m │ ├── TSNotificationActionStreamHandler.m │ ├── TSPowerSaveChangeStreamHandler.m │ ├── TSProviderChangeStreamHandler.m │ ├── TSScheduleStreamHandler.m │ └── include │ └── flutter_background_geolocation │ ├── .gitkeep │ ├── TSActivityChangeStreamHandler.h │ ├── TSAuthorizationStreamHandler.h │ ├── TSBackgroundGeolocationPlugin.h │ ├── TSBackgroundGeolocationStreamHandler.h │ ├── TSConnectivityChangeStreamHandler.h │ ├── TSEnabledChangeStreamHandler.h │ ├── TSGeofenceStreamHandler.h │ ├── TSGeofencesChangeStreamHandler.h │ ├── TSHeartbeatStreamHandler.h │ ├── TSHttpStreamHandler.h │ ├── TSLocationStreamHandler.h │ ├── TSMotionChangeStreamHandler.h │ ├── TSNotificationActionStreamHandler.h │ ├── TSPowerSaveChangeStreamHandler.h │ ├── TSProviderChangeStreamHandler.h │ └── TSScheduleStreamHandler.h ├── lib ├── flutter_background_geolocation.dart └── models │ ├── activity_change_event.dart │ ├── authorization.dart │ ├── authorization_event.dart │ ├── background_geolocation.dart │ ├── config.dart │ ├── connectivity_change_event.dart │ ├── device_info.dart │ ├── device_settings.dart │ ├── error.dart │ ├── event.dart │ ├── geofence.dart │ ├── geofence_event.dart │ ├── geofences_change_event.dart │ ├── headless_event.dart │ ├── heartbeat_event.dart │ ├── http_event.dart │ ├── location.dart │ ├── logger.dart │ ├── notification.dart │ ├── permission_rationale.dart │ ├── provider_change_event.dart │ ├── sensors.dart │ ├── sql_query.dart │ ├── state.dart │ └── transistor_authorization_token.dart └── pubspec.yaml /.github/ISSUE_TEMPLATE/1-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/.github/ISSUE_TEMPLATE/1-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-help-wanted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/.github/ISSUE_TEMPLATE/2-help-wanted.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/core.yaml 2 | 3 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/background_geolocation.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/background_geolocation.gradle -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.md5: -------------------------------------------------------------------------------- 1 | 152d8ddd1f43f4bcc5b9e37195921fcf -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha1 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha256 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha512 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.md5: -------------------------------------------------------------------------------- 1 | 6924c39f06c0c0019ce10d0ee0bbbcc7 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha1 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha256 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha512 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager-v21/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager-v21/maven-metadata.xml -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.md5: -------------------------------------------------------------------------------- 1 | 5d80fcaaf8a7479c5ac75afeca7d4266 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha1 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha256 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha512 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.md5: -------------------------------------------------------------------------------- 1 | 82ad6df0aee643ef3ebf790de03acef7 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha1 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha256 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha512 -------------------------------------------------------------------------------- /android/libs/com/transistorsoft/tslocationmanager/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/libs/com/transistorsoft/tslocationmanager/maven-metadata.xml -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'flutter_background_geolocation' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/BackgroundGeolocationModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/BackgroundGeolocationModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/FLTBackgroundGeolocationPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/FLTBackgroundGeolocationPlugin.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/HeadlessTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/HeadlessTask.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ActivityChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ActivityChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/AuthorizationStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/AuthorizationStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ConnectivityChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ConnectivityChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/EnabledChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/EnabledChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/GeofenceStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/GeofenceStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/GeofencesChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/GeofencesChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/HeartbeatStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/HeartbeatStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/HttpStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/HttpStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/LocationStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/LocationStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/MotionChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/MotionChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/NotificationActionStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/NotificationActionStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/PowerSaveChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/PowerSaveChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ProviderChangeStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ProviderChangeStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ScheduleStreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/ScheduleStreamHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/StreamHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/android/src/main/java/com/transistorsoft/flutter/backgroundgeolocation/streams/StreamHandler.java -------------------------------------------------------------------------------- /dartdoc_options.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/dartdoc_options.yaml.bak -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/build.gradle.kts -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/transistorsoft/flutterbackgroundgeolocationexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/kotlin/com/transistorsoft/flutterbackgroundgeolocationexample/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/layout/notification_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/layout/notification_layout.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/build.gradle.kts -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/android/settings.gradle.kts -------------------------------------------------------------------------------- /example/assets/images/markers/bluedot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/bluedot.png -------------------------------------------------------------------------------- /example/assets/images/markers/geofence-event-edge-circle-dwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/geofence-event-edge-circle-dwell.png -------------------------------------------------------------------------------- /example/assets/images/markers/geofence-event-edge-circle-dwell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/geofence-event-edge-circle-dwell@3x.png -------------------------------------------------------------------------------- /example/assets/images/markers/geofence-event-edge-circle-enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/geofence-event-edge-circle-enter.png -------------------------------------------------------------------------------- /example/assets/images/markers/geofence-event-edge-circle-enter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/geofence-event-edge-circle-enter@3x.png -------------------------------------------------------------------------------- /example/assets/images/markers/geofence-event-edge-circle-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/geofence-event-edge-circle-exit.png -------------------------------------------------------------------------------- /example/assets/images/markers/geofence-event-edge-circle-exit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/geofence-event-edge-circle-exit@3x.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-amber.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-amber@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-amber@3x.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-blue.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-blue@3x.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-green.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-green@3x.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-red.png -------------------------------------------------------------------------------- /example/assets/images/markers/location-arrow-red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/assets/images/markers/location-arrow-red@3x.png -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/CityDrive.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/CityDrive.gpx -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/lib/advanced/actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/actions.dart -------------------------------------------------------------------------------- /example/lib/advanced/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/app.dart -------------------------------------------------------------------------------- /example/lib/advanced/event_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/event_list.dart -------------------------------------------------------------------------------- /example/lib/advanced/geofence_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/geofence_view.dart -------------------------------------------------------------------------------- /example/lib/advanced/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/home_view.dart -------------------------------------------------------------------------------- /example/lib/advanced/main_menu_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/main_menu_button.dart -------------------------------------------------------------------------------- /example/lib/advanced/map_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/map_view.dart -------------------------------------------------------------------------------- /example/lib/advanced/settings_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/settings_view.dart -------------------------------------------------------------------------------- /example/lib/advanced/shared_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/shared_events.dart -------------------------------------------------------------------------------- /example/lib/advanced/util/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/util/dialog.dart -------------------------------------------------------------------------------- /example/lib/advanced/util/geospatial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/util/geospatial.dart -------------------------------------------------------------------------------- /example/lib/advanced/util/test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/advanced/util/test.dart -------------------------------------------------------------------------------- /example/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/app.dart -------------------------------------------------------------------------------- /example/lib/config/env.dart: -------------------------------------------------------------------------------- 1 | class ENV { 2 | static const TRACKER_HOST = 'https://tracker.transistorsoft.com'; 3 | } 4 | -------------------------------------------------------------------------------- /example/lib/config/transistor_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/config/transistor_auth.dart -------------------------------------------------------------------------------- /example/lib/hello_world/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/hello_world/app.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/registration_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/lib/registration_view.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/scripts/adb-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/scripts/adb-install.sh -------------------------------------------------------------------------------- /example/scripts/pull-geofences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/scripts/pull-geofences -------------------------------------------------------------------------------- /example/scripts/pull-logback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/scripts/pull-logback -------------------------------------------------------------------------------- /example/scripts/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/scripts/release -------------------------------------------------------------------------------- /example/scripts/simulate-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/scripts/simulate-fetch.sh -------------------------------------------------------------------------------- /example/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/scripts/test.sh -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /help/INSTALL-ANDROID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/help/INSTALL-ANDROID.md -------------------------------------------------------------------------------- /help/INSTALL-IOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/help/INSTALL-IOS.md -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/flutter_background_geolocation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation.podspec -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/Info.plist -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/AtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/AtomicBoolean.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/ConfigModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/ConfigModule.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpResponse.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LogQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LogQuery.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SOMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SOMotionDetector.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SQLQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SQLQuery.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorization.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorizationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorizationEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCallback.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSDeviceInfo.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpService.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSReachability.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Info.plist -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Miniball/Miniball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Miniball/Miniball.hpp -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/AtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/AtomicBoolean.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/ConfigModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/ConfigModule.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpResponse.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LogQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LogQuery.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SOMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SOMotionDetector.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SQLQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SQLQuery.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorization.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorizationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorizationEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCallback.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSDeviceInfo.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpService.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSReachability.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Info.plist -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Miniball/Miniball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Miniball/Miniball.hpp -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/AtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/AtomicBoolean.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/ConfigModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/ConfigModule.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpResponse.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LogQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LogQuery.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SOMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SOMotionDetector.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SQLQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SQLQuery.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorization.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorizationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorizationEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCallback.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSDeviceInfo.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpService.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSReachability.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Info.plist -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Miniball/Miniball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Miniball/Miniball.hpp -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Frameworks/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Package.swift -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSActivityChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSActivityChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSAuthorizationStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSAuthorizationStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSBackgroundGeolocationPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSBackgroundGeolocationPlugin.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSBackgroundGeolocationStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSBackgroundGeolocationStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSConnectivityChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSConnectivityChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSEnabledChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSEnabledChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSGeofenceStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSGeofenceStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSGeofencesChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSGeofencesChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSHeartbeatStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSHeartbeatStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSHttpStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSHttpStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSLocationStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSLocationStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSMotionChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSMotionChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSNotificationActionStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSNotificationActionStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSPowerSaveChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSPowerSaveChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSProviderChangeStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSProviderChangeStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSScheduleStreamHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/TSScheduleStreamHandler.m -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSActivityChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSActivityChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSAuthorizationStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSAuthorizationStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSBackgroundGeolocationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSBackgroundGeolocationPlugin.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSBackgroundGeolocationStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSBackgroundGeolocationStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSConnectivityChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSConnectivityChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSEnabledChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSEnabledChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSGeofenceStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSGeofenceStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSGeofencesChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSGeofencesChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSHeartbeatStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSHeartbeatStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSHttpStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSHttpStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSLocationStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSLocationStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSMotionChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSMotionChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSNotificationActionStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSNotificationActionStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSPowerSaveChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSPowerSaveChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSProviderChangeStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSProviderChangeStreamHandler.h -------------------------------------------------------------------------------- /ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSScheduleStreamHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/ios/flutter_background_geolocation/Sources/flutter_background_geolocation/include/flutter_background_geolocation/TSScheduleStreamHandler.h -------------------------------------------------------------------------------- /lib/flutter_background_geolocation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/flutter_background_geolocation.dart -------------------------------------------------------------------------------- /lib/models/activity_change_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/activity_change_event.dart -------------------------------------------------------------------------------- /lib/models/authorization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/authorization.dart -------------------------------------------------------------------------------- /lib/models/authorization_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/authorization_event.dart -------------------------------------------------------------------------------- /lib/models/background_geolocation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/background_geolocation.dart -------------------------------------------------------------------------------- /lib/models/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/config.dart -------------------------------------------------------------------------------- /lib/models/connectivity_change_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/connectivity_change_event.dart -------------------------------------------------------------------------------- /lib/models/device_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/device_info.dart -------------------------------------------------------------------------------- /lib/models/device_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/device_settings.dart -------------------------------------------------------------------------------- /lib/models/error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/error.dart -------------------------------------------------------------------------------- /lib/models/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/event.dart -------------------------------------------------------------------------------- /lib/models/geofence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/geofence.dart -------------------------------------------------------------------------------- /lib/models/geofence_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/geofence_event.dart -------------------------------------------------------------------------------- /lib/models/geofences_change_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/geofences_change_event.dart -------------------------------------------------------------------------------- /lib/models/headless_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/headless_event.dart -------------------------------------------------------------------------------- /lib/models/heartbeat_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/heartbeat_event.dart -------------------------------------------------------------------------------- /lib/models/http_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/http_event.dart -------------------------------------------------------------------------------- /lib/models/location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/location.dart -------------------------------------------------------------------------------- /lib/models/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/logger.dart -------------------------------------------------------------------------------- /lib/models/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/notification.dart -------------------------------------------------------------------------------- /lib/models/permission_rationale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/permission_rationale.dart -------------------------------------------------------------------------------- /lib/models/provider_change_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/provider_change_event.dart -------------------------------------------------------------------------------- /lib/models/sensors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/sensors.dart -------------------------------------------------------------------------------- /lib/models/sql_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/sql_query.dart -------------------------------------------------------------------------------- /lib/models/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/state.dart -------------------------------------------------------------------------------- /lib/models/transistor_authorization_token.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/lib/models/transistor_authorization_token.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/flutter_background_geolocation/HEAD/pubspec.yaml --------------------------------------------------------------------------------