├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── background-geolocation.ts ├── demo ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-1125h.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape-X.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── README.md │ ├── app-root.xml │ ├── app.css │ ├── app.ts │ ├── bundle-config.ts │ ├── css │ │ └── ionicons.min.css │ ├── fonts │ │ └── ionicons.ttf │ ├── main-page.ts │ ├── main-page.xml │ ├── main-view-model.ts │ └── package.json ├── package.json └── tsconfig.json ├── docs ├── README.md ├── geofencing.md └── http.md └── src ├── .npmignore ├── HeadlessBroadcastReceiver.android.d.ts ├── HeadlessBroadcastReceiver.android.ts ├── HeadlessJobService.android.d.ts ├── HeadlessJobService.android.ts ├── api.android.d.ts ├── api.android.ts ├── api.ios.d.ts ├── api.ios.ts ├── background-geolocation.d.ts ├── background-geolocation.ts ├── package.json ├── platforms ├── android │ ├── AndroidManifest.xml │ ├── include.gradle │ ├── libs │ │ └── tslocationmanager-2.12.19.aar │ └── nativescript_background_geolocation_lt.aar └── ios │ ├── Info.plist │ ├── Podfile │ ├── TSLocationManager.framework │ ├── Headers │ │ ├── LocationManager.h │ │ ├── TSActivityChangeEvent.h │ │ ├── TSConfig.h │ │ ├── TSConnectivityChangeEvent.h │ │ ├── TSCurrentPositionRequest.h │ │ ├── TSEnabledChangeEvent.h │ │ ├── TSGeofence.h │ │ ├── TSGeofenceEvent.h │ │ ├── TSGeofencesChangeEvent.h │ │ ├── TSHeartbeatEvent.h │ │ ├── TSHttpEvent.h │ │ ├── TSLocation.h │ │ ├── TSLocationManager.h │ │ ├── TSPowerSaveChangeEvent.h │ │ ├── TSProviderChangeEvent.h │ │ ├── TSSchedule.h │ │ ├── TSScheduleEvent.h │ │ └── TSWatchPositionRequest.h │ ├── Info.plist │ ├── Modules │ │ └── module.modulemap │ ├── TSLocationManager │ └── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ └── nativescript-background-geolocation-lt.podspec ├── references.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/README.md -------------------------------------------------------------------------------- /background-geolocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/background-geolocation.ts -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/README.md -------------------------------------------------------------------------------- /demo/app/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/app-root.xml -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/bundle-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/bundle-config.ts -------------------------------------------------------------------------------- /demo/app/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/css/ionicons.min.css -------------------------------------------------------------------------------- /demo/app/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/fonts/ionicons.ttf -------------------------------------------------------------------------------- /demo/app/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/main-page.ts -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/main-view-model.ts -------------------------------------------------------------------------------- /demo/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/app/package.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/geofencing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/docs/geofencing.md -------------------------------------------------------------------------------- /docs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/docs/http.md -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/HeadlessBroadcastReceiver.android.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/HeadlessBroadcastReceiver.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/HeadlessBroadcastReceiver.android.ts -------------------------------------------------------------------------------- /src/HeadlessJobService.android.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/HeadlessJobService.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/HeadlessJobService.android.ts -------------------------------------------------------------------------------- /src/api.android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/api.android.d.ts -------------------------------------------------------------------------------- /src/api.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/api.android.ts -------------------------------------------------------------------------------- /src/api.ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/api.ios.d.ts -------------------------------------------------------------------------------- /src/api.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/api.ios.ts -------------------------------------------------------------------------------- /src/background-geolocation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/background-geolocation.d.ts -------------------------------------------------------------------------------- /src/background-geolocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/background-geolocation.ts -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/package.json -------------------------------------------------------------------------------- /src/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/android/include.gradle -------------------------------------------------------------------------------- /src/platforms/android/libs/tslocationmanager-2.12.19.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/android/libs/tslocationmanager-2.12.19.aar -------------------------------------------------------------------------------- /src/platforms/android/nativescript_background_geolocation_lt.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/android/nativescript_background_geolocation_lt.aar -------------------------------------------------------------------------------- /src/platforms/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/Info.plist -------------------------------------------------------------------------------- /src/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/Podfile -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/LocationManager.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSActivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSActivityChangeEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSConfig.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSConnectivityChangeEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSCurrentPositionRequest.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSEnabledChangeEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSGeofence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSGeofence.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSGeofenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSGeofenceEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSGeofencesChangeEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSHeartbeatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSHeartbeatEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSHttpEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSHttpEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSLocation.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSLocationManager.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSPowerSaveChangeEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSProviderChangeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSProviderChangeEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSSchedule.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSScheduleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSScheduleEvent.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Headers/TSWatchPositionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Headers/TSWatchPositionRequest.h -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Info.plist -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/TSLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/TSLocationManager -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/TSLocationManager.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /src/platforms/ios/nativescript-background-geolocation-lt.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/platforms/ios/nativescript-background-geolocation-lt.podspec -------------------------------------------------------------------------------- /src/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/references.d.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorsoft/nativescript-background-geolocation-lt/HEAD/src/tsconfig.json --------------------------------------------------------------------------------