├── .fvmrc ├── .github └── workflows │ ├── analyzer.yml │ └── test.yml ├── .gitignore ├── .metadata ├── .pubignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── icapps │ └── background_location_tracker │ ├── BackgroundLocationTrackerPlugin.kt │ ├── MethodCallHelper.kt │ ├── ext │ ├── context_extensions.kt │ └── method_call_extensions.kt │ ├── flutter │ ├── FlutterBackgroundManager.kt │ └── FlutterLifecycleAdapter.kt │ ├── receiver │ └── LocationReceiver.kt │ ├── service │ ├── LocationServiceConnection.kt │ ├── LocationUpdateListener.kt │ └── LocationUpdatesService.kt │ └── utils │ ├── ActivityCounter.kt │ ├── Logger.kt │ ├── NotificationUtil.kt │ └── SharedPrefsUtil.kt ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ ├── Application.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── BackgroundLocationTrackerPlugin.h │ ├── BackgroundLocationTrackerPlugin.m │ ├── CustomLogger.swift │ ├── ForegroundChannel.swift │ ├── LocationManager.swift │ ├── SharedPrefsUtil.swift │ └── SwiftBackgroundLocationTrackerPlugin.swift └── background_location_tracker.podspec ├── lib ├── background_location_tracker.dart └── src │ ├── background_location_tracker_manager.dart │ ├── channel │ ├── background_channel.dart │ └── foreground_channel.dart │ ├── model │ ├── background_location_update_data.dart │ └── config │ │ ├── android_config.dart │ │ ├── background_location_tracker_config.dart │ │ └── ios_config.dart │ └── util │ └── logger.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── src │ └── model │ ├── background_location_update_data_test.dart │ ├── config │ ├── android_config_test.dart │ └── ios_config_test.dart │ └── util │ └── logger_test.dart └── tool ├── packages_get.sh ├── test_coverage_create_helper.dart ├── test_coverage_filter.dart └── test_coverage_validate_percentage.dart /.fvmrc: -------------------------------------------------------------------------------- 1 | { 2 | "flutter": "3.27.3" 3 | } -------------------------------------------------------------------------------- /.github/workflows/analyzer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/.github/workflows/analyzer.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/.metadata -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/.pubignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dart.flutterSdkPath": ".fvm/versions/3.27.3" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'background_location_tracker' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/BackgroundLocationTrackerPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/BackgroundLocationTrackerPlugin.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/MethodCallHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/MethodCallHelper.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/ext/context_extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/ext/context_extensions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/ext/method_call_extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/ext/method_call_extensions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/flutter/FlutterBackgroundManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/flutter/FlutterBackgroundManager.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/flutter/FlutterLifecycleAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/flutter/FlutterLifecycleAdapter.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/receiver/LocationReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/receiver/LocationReceiver.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/service/LocationServiceConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/service/LocationServiceConnection.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/service/LocationUpdateListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/service/LocationUpdateListener.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/service/LocationUpdatesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/service/LocationUpdatesService.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/utils/ActivityCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/utils/ActivityCounter.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/utils/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/utils/Logger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/utils/NotificationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/utils/NotificationUtil.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/icapps/background_location_tracker/utils/SharedPrefsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/android/src/main/kotlin/com/icapps/background_location_tracker/utils/SharedPrefsUtil.kt -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/kotlin/com/example/example/Application.kt -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/BackgroundLocationTrackerPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/BackgroundLocationTrackerPlugin.h -------------------------------------------------------------------------------- /ios/Classes/BackgroundLocationTrackerPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/BackgroundLocationTrackerPlugin.m -------------------------------------------------------------------------------- /ios/Classes/CustomLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/CustomLogger.swift -------------------------------------------------------------------------------- /ios/Classes/ForegroundChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/ForegroundChannel.swift -------------------------------------------------------------------------------- /ios/Classes/LocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/LocationManager.swift -------------------------------------------------------------------------------- /ios/Classes/SharedPrefsUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/SharedPrefsUtil.swift -------------------------------------------------------------------------------- /ios/Classes/SwiftBackgroundLocationTrackerPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/Classes/SwiftBackgroundLocationTrackerPlugin.swift -------------------------------------------------------------------------------- /ios/background_location_tracker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/ios/background_location_tracker.podspec -------------------------------------------------------------------------------- /lib/background_location_tracker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/background_location_tracker.dart -------------------------------------------------------------------------------- /lib/src/background_location_tracker_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/background_location_tracker_manager.dart -------------------------------------------------------------------------------- /lib/src/channel/background_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/channel/background_channel.dart -------------------------------------------------------------------------------- /lib/src/channel/foreground_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/channel/foreground_channel.dart -------------------------------------------------------------------------------- /lib/src/model/background_location_update_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/model/background_location_update_data.dart -------------------------------------------------------------------------------- /lib/src/model/config/android_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/model/config/android_config.dart -------------------------------------------------------------------------------- /lib/src/model/config/background_location_tracker_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/model/config/background_location_tracker_config.dart -------------------------------------------------------------------------------- /lib/src/model/config/ios_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/model/config/ios_config.dart -------------------------------------------------------------------------------- /lib/src/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/lib/src/util/logger.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/src/model/background_location_update_data_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/test/src/model/background_location_update_data_test.dart -------------------------------------------------------------------------------- /test/src/model/config/android_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/test/src/model/config/android_config_test.dart -------------------------------------------------------------------------------- /test/src/model/config/ios_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/test/src/model/config/ios_config_test.dart -------------------------------------------------------------------------------- /test/src/model/util/logger_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/test/src/model/util/logger_test.dart -------------------------------------------------------------------------------- /tool/packages_get.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flutter packages get 4 | -------------------------------------------------------------------------------- /tool/test_coverage_create_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/tool/test_coverage_create_helper.dart -------------------------------------------------------------------------------- /tool/test_coverage_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/tool/test_coverage_filter.dart -------------------------------------------------------------------------------- /tool/test_coverage_validate_percentage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icapps/flutter-background-location-tracker/HEAD/tool/test_coverage_validate_percentage.dart --------------------------------------------------------------------------------