├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── org │ └── thebus │ └── foreground_service │ ├── DateHelper.kt │ └── ForegroundServicePlugin.kt ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── org_thebus_foregroundserviceplugin_notificationicon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── org_thebus_foregroundserviceplugin_notificationicon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── org_thebus_foregroundserviceplugin_notificationicon.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── org_thebus_foregroundserviceplugin_notificationicon.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── org_thebus_foregroundserviceplugin_notificationicon.png │ │ │ │ ├── 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 │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── lib │ └── main.dart └── pubspec.yaml ├── foreground_service.iml ├── ios └── foreground_service.podspec ├── lib └── foreground_service.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'foreground_service' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/org/thebus/foreground_service/DateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/android/src/main/kotlin/org/thebus/foreground_service/DateHelper.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/org/thebus/foreground_service/ForegroundServicePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/android/src/main/kotlin/org/thebus/foreground_service/ForegroundServicePlugin.kt -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-hdpi/org_thebus_foregroundserviceplugin_notificationicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/drawable-hdpi/org_thebus_foregroundserviceplugin_notificationicon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-mdpi/org_thebus_foregroundserviceplugin_notificationicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/drawable-mdpi/org_thebus_foregroundserviceplugin_notificationicon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xhdpi/org_thebus_foregroundserviceplugin_notificationicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/drawable-xhdpi/org_thebus_foregroundserviceplugin_notificationicon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxhdpi/org_thebus_foregroundserviceplugin_notificationicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/drawable-xxhdpi/org_thebus_foregroundserviceplugin_notificationicon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxxhdpi/org_thebus_foregroundserviceplugin_notificationicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/drawable-xxxhdpi/org_thebus_foregroundserviceplugin_notificationicon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/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/michael-cheung-thebus/foreground_service/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/michael-cheung-thebus/foreground_service/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/michael-cheung-thebus/foreground_service/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/michael-cheung-thebus/foreground_service/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/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /foreground_service.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/foreground_service.iml -------------------------------------------------------------------------------- /ios/foreground_service.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/ios/foreground_service.podspec -------------------------------------------------------------------------------- /lib/foreground_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/lib/foreground_service.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-cheung-thebus/foreground_service/HEAD/pubspec.yaml --------------------------------------------------------------------------------