├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug.yml │ └── 2-help-wanted.yml └── workflows │ └── stale.yaml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── bin ├── actions.js ├── cli └── lib.js ├── docs ├── .nojekyll ├── assets │ ├── css │ │ └── main.css │ ├── images │ │ ├── favicon.ico │ │ ├── icons.png │ │ ├── icons.psd │ │ ├── icons@2x.png │ │ ├── logo-black-150.png │ │ ├── transistor-logo-bw.svg │ │ ├── transistor-logo.svg │ │ ├── widgets-foo.png │ │ ├── widgets.png │ │ ├── widgets.psd │ │ └── widgets@2x.png │ └── js │ │ ├── main.js │ │ └── search.js ├── classes │ └── backgroundgeolocation.html ├── index.html └── interfaces │ ├── authorization.html │ ├── authorizationevent.html │ ├── battery.html │ ├── config.html │ ├── connectivitychangeevent.html │ ├── coords.html │ ├── currentpositionrequest.html │ ├── deviceinfo.html │ ├── devicesettings.html │ ├── devicesettingsrequest.html │ ├── geofence.html │ ├── geofenceevent.html │ ├── geofenceschangeevent.html │ ├── heartbeatevent.html │ ├── httpevent.html │ ├── location.html │ ├── locationauthorizationalert.html │ ├── logger.html │ ├── motionactivity.html │ ├── motionactivityevent.html │ ├── motionchangeevent.html │ ├── notification.html │ ├── permissionrationale.html │ ├── providerchangeevent.html │ ├── sensors.html │ ├── sqlquery.html │ ├── state.html │ ├── subscription.html │ ├── transistorauthorizationtoken.html │ └── watchpositionrequest.html ├── help ├── INSTALL_CAPACITOR.md ├── README.md ├── geofencing.md ├── http.md └── timing-diagram.md ├── package.json ├── plugin.xml ├── scripts ├── cp-declarations ├── declare-module ├── docs-index.html ├── generate-docs └── tsconfig.json ├── src ├── android │ ├── BackgroundGeolocationHeadlessTask.java │ ├── CDVBackgroundGeolocation.java │ ├── app.gradle │ ├── build.gradle │ ├── 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 ├── browser │ └── BackgroundGeolocationMock.js ├── ionic │ ├── declarations │ │ ├── BackgroundGeolocation.d.ts │ │ ├── interfaces │ │ │ ├── .Subscription.d.ts.swp │ │ │ ├── Authorization.d.ts │ │ │ ├── AuthorizationEvent.d.ts │ │ │ ├── Config.d.ts │ │ │ ├── ConnectivityChangeEvent.d.ts │ │ │ ├── CurrentPositionRequest.d.ts │ │ │ ├── DeviceInfo.d.ts │ │ │ ├── DeviceSettings.d.ts │ │ │ ├── Geofence.d.ts │ │ │ ├── GeofenceEvent.d.ts │ │ │ ├── GeofencesChangeEvent.d.ts │ │ │ ├── HeartbeatEvent.d.ts │ │ │ ├── HttpEvent.d.ts │ │ │ ├── Location.d.ts │ │ │ ├── LocationAuthorizationAlert.d.ts │ │ │ ├── Logger.d.ts │ │ │ ├── MotionActivityEvent.d.ts │ │ │ ├── MotionChangeEvent.d.ts │ │ │ ├── Notification.d.ts │ │ │ ├── PermissionRationale.d.ts │ │ │ ├── ProviderChangeEvent.d.ts │ │ │ ├── SQLQuery.d.ts │ │ │ ├── Sensors.d.ts │ │ │ ├── State.d.ts │ │ │ ├── Subscription.d.ts │ │ │ ├── TransistorAuthorizationToken.d.ts │ │ │ └── WatchPositionRequest.d.ts │ │ └── types.d.ts │ ├── index.d.ts │ ├── index.js │ ├── index.ts │ └── tsconfig.json └── ios │ ├── CDVBackgroundGeolocation.h │ ├── CDVBackgroundGeolocation.m │ └── 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 └── www ├── API.js ├── BackgroundGeolocation.js ├── DeviceSettings.js ├── Logger.js └── TransistorAuthorizationToken.js /.github/ISSUE_TEMPLATE/1-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/.github/ISSUE_TEMPLATE/1-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-help-wanted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/.github/ISSUE_TEMPLATE/2-help-wanted.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | package-lock.json 4 | *.tgz 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/README.md -------------------------------------------------------------------------------- /bin/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/bin/actions.js -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/bin/cli -------------------------------------------------------------------------------- /bin/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/bin/lib.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/icons.png -------------------------------------------------------------------------------- /docs/assets/images/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/icons.psd -------------------------------------------------------------------------------- /docs/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/images/logo-black-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/logo-black-150.png -------------------------------------------------------------------------------- /docs/assets/images/transistor-logo-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/transistor-logo-bw.svg -------------------------------------------------------------------------------- /docs/assets/images/transistor-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/transistor-logo.svg -------------------------------------------------------------------------------- /docs/assets/images/widgets-foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/widgets-foo.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/widgets.psd -------------------------------------------------------------------------------- /docs/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/assets/js/search.js -------------------------------------------------------------------------------- /docs/classes/backgroundgeolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/classes/backgroundgeolocation.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/authorization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/authorization.html -------------------------------------------------------------------------------- /docs/interfaces/authorizationevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/authorizationevent.html -------------------------------------------------------------------------------- /docs/interfaces/battery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/battery.html -------------------------------------------------------------------------------- /docs/interfaces/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/config.html -------------------------------------------------------------------------------- /docs/interfaces/connectivitychangeevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/connectivitychangeevent.html -------------------------------------------------------------------------------- /docs/interfaces/coords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/coords.html -------------------------------------------------------------------------------- /docs/interfaces/currentpositionrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/currentpositionrequest.html -------------------------------------------------------------------------------- /docs/interfaces/deviceinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/deviceinfo.html -------------------------------------------------------------------------------- /docs/interfaces/devicesettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/devicesettings.html -------------------------------------------------------------------------------- /docs/interfaces/devicesettingsrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/devicesettingsrequest.html -------------------------------------------------------------------------------- /docs/interfaces/geofence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/geofence.html -------------------------------------------------------------------------------- /docs/interfaces/geofenceevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/geofenceevent.html -------------------------------------------------------------------------------- /docs/interfaces/geofenceschangeevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/geofenceschangeevent.html -------------------------------------------------------------------------------- /docs/interfaces/heartbeatevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/heartbeatevent.html -------------------------------------------------------------------------------- /docs/interfaces/httpevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/httpevent.html -------------------------------------------------------------------------------- /docs/interfaces/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/location.html -------------------------------------------------------------------------------- /docs/interfaces/locationauthorizationalert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/locationauthorizationalert.html -------------------------------------------------------------------------------- /docs/interfaces/logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/logger.html -------------------------------------------------------------------------------- /docs/interfaces/motionactivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/motionactivity.html -------------------------------------------------------------------------------- /docs/interfaces/motionactivityevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/motionactivityevent.html -------------------------------------------------------------------------------- /docs/interfaces/motionchangeevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/motionchangeevent.html -------------------------------------------------------------------------------- /docs/interfaces/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/notification.html -------------------------------------------------------------------------------- /docs/interfaces/permissionrationale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/permissionrationale.html -------------------------------------------------------------------------------- /docs/interfaces/providerchangeevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/providerchangeevent.html -------------------------------------------------------------------------------- /docs/interfaces/sensors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/sensors.html -------------------------------------------------------------------------------- /docs/interfaces/sqlquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/sqlquery.html -------------------------------------------------------------------------------- /docs/interfaces/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/state.html -------------------------------------------------------------------------------- /docs/interfaces/subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/subscription.html -------------------------------------------------------------------------------- /docs/interfaces/transistorauthorizationtoken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/transistorauthorizationtoken.html -------------------------------------------------------------------------------- /docs/interfaces/watchpositionrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/docs/interfaces/watchpositionrequest.html -------------------------------------------------------------------------------- /help/INSTALL_CAPACITOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/help/INSTALL_CAPACITOR.md -------------------------------------------------------------------------------- /help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/help/README.md -------------------------------------------------------------------------------- /help/geofencing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/help/geofencing.md -------------------------------------------------------------------------------- /help/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/help/http.md -------------------------------------------------------------------------------- /help/timing-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/help/timing-diagram.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/plugin.xml -------------------------------------------------------------------------------- /scripts/cp-declarations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/scripts/cp-declarations -------------------------------------------------------------------------------- /scripts/declare-module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/scripts/declare-module -------------------------------------------------------------------------------- /scripts/docs-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/scripts/docs-index.html -------------------------------------------------------------------------------- /scripts/generate-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/scripts/generate-docs -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /src/android/BackgroundGeolocationHeadlessTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/BackgroundGeolocationHeadlessTask.java -------------------------------------------------------------------------------- /src/android/CDVBackgroundGeolocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/CDVBackgroundGeolocation.java -------------------------------------------------------------------------------- /src/android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/app.gradle -------------------------------------------------------------------------------- /src/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/build.gradle -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.md5: -------------------------------------------------------------------------------- 1 | 152d8ddd1f43f4bcc5b9e37195921fcf -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha1 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha256 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.aar.sha512 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.md5: -------------------------------------------------------------------------------- 1 | 6924c39f06c0c0019ce10d0ee0bbbcc7 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha1 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha256 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/3.7.0/tslocationmanager-v21-3.7.0.pom.sha512 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager-v21/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager-v21/maven-metadata.xml -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.md5: -------------------------------------------------------------------------------- 1 | 5d80fcaaf8a7479c5ac75afeca7d4266 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha1 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha256 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.aar.sha512 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.md5: -------------------------------------------------------------------------------- 1 | 82ad6df0aee643ef3ebf790de03acef7 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha1 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha256 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/3.7.0/tslocationmanager-3.7.0.pom.sha512 -------------------------------------------------------------------------------- /src/android/libs/com/transistorsoft/tslocationmanager/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/libs/com/transistorsoft/tslocationmanager/maven-metadata.xml -------------------------------------------------------------------------------- /src/android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/android/proguard-rules.pro -------------------------------------------------------------------------------- /src/browser/BackgroundGeolocationMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/browser/BackgroundGeolocationMock.js -------------------------------------------------------------------------------- /src/ionic/declarations/BackgroundGeolocation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/BackgroundGeolocation.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/.Subscription.d.ts.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/.Subscription.d.ts.swp -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Authorization.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Authorization.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/AuthorizationEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/AuthorizationEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Config.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/ConnectivityChangeEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/ConnectivityChangeEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/CurrentPositionRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/CurrentPositionRequest.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/DeviceInfo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/DeviceInfo.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/DeviceSettings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/DeviceSettings.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Geofence.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Geofence.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/GeofenceEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/GeofenceEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/GeofencesChangeEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/GeofencesChangeEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/HeartbeatEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/HeartbeatEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/HttpEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/HttpEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Location.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Location.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/LocationAuthorizationAlert.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/LocationAuthorizationAlert.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Logger.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/MotionActivityEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/MotionActivityEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/MotionChangeEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/MotionChangeEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Notification.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Notification.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/PermissionRationale.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/PermissionRationale.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/ProviderChangeEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/ProviderChangeEvent.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/SQLQuery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/SQLQuery.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Sensors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Sensors.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/State.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/State.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/Subscription.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/Subscription.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/TransistorAuthorizationToken.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/TransistorAuthorizationToken.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/interfaces/WatchPositionRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/interfaces/WatchPositionRequest.d.ts -------------------------------------------------------------------------------- /src/ionic/declarations/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/declarations/types.d.ts -------------------------------------------------------------------------------- /src/ionic/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/index.d.ts -------------------------------------------------------------------------------- /src/ionic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/index.js -------------------------------------------------------------------------------- /src/ionic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/index.ts -------------------------------------------------------------------------------- /src/ionic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ionic/tsconfig.json -------------------------------------------------------------------------------- /src/ios/CDVBackgroundGeolocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/CDVBackgroundGeolocation.h -------------------------------------------------------------------------------- /src/ios/CDVBackgroundGeolocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/CDVBackgroundGeolocation.m -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/Info.plist -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/AtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/AtomicBoolean.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/ConfigModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/ConfigModule.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/HttpResponse.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LogQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/LogQuery.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SOMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SOMotionDetector.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SQLQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/SQLQuery.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorization.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorizationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSAuthorizationEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCallback.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSDeviceInfo.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofenceManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSHttpService.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSReachability.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Info.plist -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Miniball/Miniball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Miniball/Miniball.hpp -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/AtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/AtomicBoolean.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/ConfigModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/ConfigModule.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/HttpResponse.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LogQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/LogQuery.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SOMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SOMotionDetector.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SQLQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/SQLQuery.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorization.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorizationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSAuthorizationEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCallback.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSDeviceInfo.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofenceManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSHttpService.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSReachability.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Info.plist -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Miniball/Miniball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Miniball/Miniball.hpp -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/AtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/AtomicBoolean.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/ConfigModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/ConfigModule.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/HttpResponse.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LogQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/LogQuery.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SOMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SOMotionDetector.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SQLQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/SQLQuery.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorization.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorizationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSAuthorizationEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCallback.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSDeviceInfo.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofenceManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSHttpService.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSReachability.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Headers/TransistorAuthorizationToken.h -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Info.plist -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Miniball/Miniball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Miniball/Miniball.hpp -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/www/API.js -------------------------------------------------------------------------------- /www/BackgroundGeolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/www/BackgroundGeolocation.js -------------------------------------------------------------------------------- /www/DeviceSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/www/DeviceSettings.js -------------------------------------------------------------------------------- /www/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/www/Logger.js -------------------------------------------------------------------------------- /www/TransistorAuthorizationToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/cordova-background-geolocation-lt/HEAD/www/TransistorAuthorizationToken.js --------------------------------------------------------------------------------