Remove flutter_background_service

This commit is contained in:
PapaTutuWawa 2022-04-28 21:26:08 +02:00
parent d2386bb86b
commit c3f7091e00
58 changed files with 1436 additions and 134 deletions

View File

@ -3,3 +3,7 @@
Platform-specific code for Moxxy. Not intended for use outside of Moxxy. Platform-specific code for Moxxy. Not intended for use outside of Moxxy.
This repo is based on [very_good_flutter_plugin](https://github.com/VeryGoodOpenSource/very_good_flutter_plugin). This repo is based on [very_good_flutter_plugin](https://github.com/VeryGoodOpenSource/very_good_flutter_plugin).
## Acknowledgements
- [ekasetiawans](https://github.com/ekasetiawans) for [flutter_background_service](https://github.com/ekasetiawans/flutter_background_service). moxplatform_android is basically just a copy and paste of [flutter_background_service](https://github.com/ekasetiawans/flutter_background_service).

47
src/moxplatform/example/.gitignore vendored Normal file
View File

@ -0,0 +1,47 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/
# Web related
lib/generated_plugin_registrant.dart
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

View File

@ -0,0 +1,30 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled.
version:
revision: 13a2fb10b838971ce211230f8ffdd094c14af02c
channel: beta
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 13a2fb10b838971ce211230f8ffdd094c14af02c
base_revision: 13a2fb10b838971ce211230f8ffdd094c14af02c
- platform: android
create_revision: 13a2fb10b838971ce211230f8ffdd094c14af02c
base_revision: 13a2fb10b838971ce211230f8ffdd094c14af02c
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

View File

@ -0,0 +1,16 @@
# moxplatform_example
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

View File

@ -0,0 +1,29 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at
# https://dart-lang.github.io/linter/lints/index.html.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks

View File

@ -0,0 +1,71 @@
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "me.polynom.moxplatform_example"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

View File

@ -0,0 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.polynom.moxplatform_example">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,34 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.polynom.moxplatform_example">
<application
android:label="moxplatform_example"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>

View File

@ -0,0 +1,6 @@
package me.polynom.moxplatform_example
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.polynom.moxplatform_example">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,31 @@
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true

View File

@ -0,0 +1,6 @@
#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip

View File

@ -0,0 +1,11 @@
include ':app'
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()
assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"

View File

@ -0,0 +1,174 @@
import "dart:async";
import 'package:flutter/material.dart';
import "package:moxplatform/moxplatform.dart";
import "package:moxplatform_platform_interface/src/service.dart";
import "package:moxplatform/types.dart";
import "package:moxlib/awaitabledatasender.dart";
import "package:get_it/get_it.dart";
class TestEvent extends BackgroundEvent implements JsonImplementation {
TestEvent();
// JSON stuff
Map<String, dynamic> toJson() => {
"test": "hallo",
"welt": "yes",
"type": "TestEvent"
};
static TestEvent fromJson(Map<String, dynamic> json) => TestEvent();
}
class TestCommand extends BackgroundCommand implements JsonImplementation {
TestCommand();
// JSON stuff
Map<String, dynamic> toJson() => {
"test": "hallo",
"welt": "yes",
"type": "TestEvent"
};
static TestEvent fromJson(Map<String, dynamic> json) => TestEvent();
}
void main() {
runApp(const MyApp());
}
Future<void> entrypoint() async {
print("Hallo Welt from new FlutterEngine");
final srv = GetIt.I.get<BackgroundService>();
Timer.periodic(const Duration(seconds: 2), (_) {
srv.sendEvent(TestEvent());
});
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
Future<void> uiData(Map<String, dynamic>? data) async {
print("Isolate got data: $data");
}
Future<void> isolateData(Map<String, dynamic>? data) async {
print("UI got data: $data");
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
MoxplatformPlugin.handler.start(
entrypoint,
uiData,
isolateData,
);
Timer(const Duration(seconds: 3), () {
MoxplatformPlugin.handler.getDataSender().sendData(
TestCommand()
);
});
setState(() {
// This call to setState tells the Flutter framework that something has
// changed in this State, which causes it to rerun the build method below
// so that the display can reflect the updated values. If we changed
// _counter without calling setState(), then the build method would not be
// called again, and so nothing would appear to happen.
_counter++;
});
}
@override
Widget build(BuildContext context) {
// This method is rerun every time setState is called, for instance as done
// by the _incrementCounter method above.
//
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
// Column is also a layout widget. It takes a list of children and
// arranges them vertically. By default, it sizes itself to fit its
// children horizontally, and tries to be as tall as its parent.
//
// Invoke "debug painting" (press "p" in the console, choose the
// "Toggle Debug Paint" action from the Flutter Inspector in Android
// Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
// to see the wireframe for each widget.
//
// Column has various properties to control how it sizes itself and
// how it positions its children. Here we use mainAxisAlignment to
// center the children vertically; the main axis here is the vertical
// axis because Columns are vertical (the cross axis would be
// horizontal).
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}

View File

@ -0,0 +1,92 @@
name: moxplatform_example
description: A new Flutter project.
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1
environment:
sdk: ">=2.17.0-266.1.beta <3.0.0"
# Dependencies specify other packages that your package needs in order to work.
# To automatically upgrade your package dependencies to the latest versions
# consider running `flutter pub upgrade --major-versions`. Alternatively,
# dependencies can be manually updated by changing the version numbers below to
# the latest version available on pub.dev. To see which dependencies have newer
# versions available, run `flutter pub outdated`.
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
dev_dependencies:
flutter_test:
sdk: flutter
moxplatform:
path: ../
# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages

View File

@ -0,0 +1,30 @@
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:moxplatform_example/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
});
}

View File

@ -21,15 +21,17 @@ dependencies:
url: https://codeberg.org/moxxy/moxlib.git url: https://codeberg.org/moxxy/moxlib.git
rev: 020c592d459654b7a807f115bd70809b3cf522bd rev: 020c592d459654b7a807f115bd70809b3cf522bd
moxplatform_android: moxplatform_android:
git: #git:
url: https://codeberg.org/moxxy/moxplatform.git # url: https://codeberg.org/moxxy/moxplatform.git
rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1 # rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1
path: src/moxplatform_android # path: src/moxplatform_android
path: ../moxplatform_android
moxplatform_platform_interface: moxplatform_platform_interface:
git: #git:
url: https://codeberg.org/moxxy/moxplatform.git # url: https://codeberg.org/moxxy/moxplatform.git
rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1 # rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1
path: src/moxplatform_platform_interface # path: src/moxplatform_platform_interface
path: ../moxplatform_platform_interface
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

30
src/moxplatform_android/.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.packages
build/

View File

@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: 13a2fb10b838971ce211230f8ffdd094c14af02c
channel: beta
project_type: plugin

View File

@ -0,0 +1,15 @@
# moxplatform_android
A new Flutter plugin project.
## Getting Started
This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
For help getting started with Flutter development, view the
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

View File

@ -0,0 +1,4 @@
include: package:flutter_lints/flutter.yaml
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

View File

@ -6,3 +6,4 @@
.DS_Store .DS_Store
/build /build
/captures /captures
.cxx

View File

@ -1,8 +1,7 @@
group 'com.example.my_plugin' group 'me.polynom.moxplatform_android'
version '1.0-SNAPSHOT' version '1.0'
buildscript { buildscript {
ext.kotlin_version = '1.3.50'
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
@ -10,7 +9,6 @@ buildscript {
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.1.0' classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }
@ -22,29 +20,20 @@ rootProject.allprojects {
} }
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android { android {
compileSdkVersion 30 compileSdkVersion 31
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8
} }
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
} }
} }
dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
} }

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -1 +1 @@
rootProject.name = 'my_plugin_android' rootProject.name = 'moxplatform_android'

View File

@ -1,3 +1,31 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.my_plugin"> package="me.polynom.moxplatform_android">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<application>
<service
android:enabled="true"
android:exported="true"
android:name=".BackgroundService"
/>
<receiver
android:name=".WatchdogReceiver"
android:enabled="true"
android:exported="true"
/>
<receiver android:name=".BootReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest> </manifest>

View File

@ -0,0 +1,262 @@
package me.polynom.moxplatform_android;
import android.app.AlarmManager;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Build;
import android.os.IBinder;
import android.os.Looper;
import android.os.PowerManager;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.core.app.AlarmManagerCompat;
import androidx.core.app.NotificationCompat;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import java.util.ArrayList;
import java.util.concurrent.atomic.AtomicBoolean;
import io.flutter.FlutterInjector;
import io.flutter.app.FlutterApplication;
import io.flutter.embedding.engine.FlutterEngine;
import io.flutter.embedding.engine.dart.DartExecutor;
import io.flutter.embedding.engine.loader.FlutterLoader;
import io.flutter.plugin.common.JSONMethodCodec;
import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;
import io.flutter.view.FlutterCallbackInformation;
import io.flutter.view.FlutterMain;
public class BackgroundService extends Service implements MethodChannel.MethodCallHandler {
private static String TAG = "BackgroundService";
private static final String manuallyStoppedKey = "manually_stopped";
private static final String backgroundMethodChannelKey = MoxplatformAndroidPlugin.methodChannelKey + "_bg";
/// The [FlutterEngine] executing the background service
private FlutterEngine engine;
private MethodChannel methodChannel;
private DartExecutor.DartCallback dartCallback;
/// True if the service has been stopped by hand
private boolean isManuallyStopped = false;
/// Indicate if we're running
private AtomicBoolean isRunning = new AtomicBoolean(false);
private static final String WAKE_LOCK_NAME = BackgroundService.class.getName() + ".Lock";
private static volatile PowerManager.WakeLock wakeLock = null;
/// Notification data
private String notificationBody = "Preparing...";
private static final String notificationTitle = "Moxxy";
synchronized private static PowerManager.WakeLock getLock(Context context) {
if (wakeLock == null) {
PowerManager mgr = (PowerManager) context
.getSystemService(Context.POWER_SERVICE);
wakeLock = mgr.newWakeLock(PowerManager.FULL_WAKE_LOCK, WAKE_LOCK_NAME);
wakeLock.setReferenceCounted(true);
}
return (wakeLock);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
public static void enqueue(Context context) {
Intent intent = new Intent(context, WatchdogReceiver.class);
AlarmManager manager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
boolean aboveS = Build.VERSION.SDK_INT >= Build.VERSION_CODES.S;
PendingIntent pending = PendingIntent.getBroadcast(
context,
111,
intent,
PendingIntent.FLAG_UPDATE_CURRENT
// Only enable FLAG_MUTABLE when the Android version is Android S or greater
| (PendingIntent.FLAG_MUTABLE & (aboveS ? PendingIntent.FLAG_MUTABLE : 0))
);
AlarmManagerCompat.setAndAllowWhileIdle(manager, AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 5000, pending);
}
public static boolean isManuallyStopped(Context context) {
return context.getSharedPreferences(MoxplatformAndroidPlugin.sharedPrefKey, MODE_PRIVATE).getBoolean(manuallyStoppedKey, false);
}
public void setManuallyStopped(Context context, boolean value) {
context.getSharedPreferences(MoxplatformAndroidPlugin.sharedPrefKey, MODE_PRIVATE)
.edit()
.putBoolean(manuallyStoppedKey, value)
.apply();
}
private void createNotificationChannel() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
CharSequence name = "Moxxy Background Service";
String description = "Executing Moxxy in the background";
int importance = NotificationManager.IMPORTANCE_LOW;
NotificationChannel channel = new NotificationChannel("FOREGROUND_DEFAULT", name, importance);
channel.setDescription(description);
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
}
protected void updateNotificationInfo() {
String packageName = getApplicationContext().getPackageName();
Intent i = getPackageManager().getLaunchIntentForPackage(packageName);
boolean aboveS = Build.VERSION.SDK_INT >= Build.VERSION_CODES.S;
PendingIntent pending = PendingIntent.getActivity(
BackgroundService.this,
99778,
i,
PendingIntent.FLAG_CANCEL_CURRENT
// Only enable on Android S or greater
| (PendingIntent.FLAG_MUTABLE & (aboveS ? PendingIntent.FLAG_MUTABLE : 0))
);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this, "FOREGROUND_DEFAULT")
.setSmallIcon(R.drawable.ic_service_icon)
.setAutoCancel(true)
.setOngoing(true)
.setContentTitle(notificationTitle)
.setContentText(notificationBody)
.setContentIntent(pending);
startForeground(99778, mBuilder.build());
}
private void runService() {
try {
if (isRunning.get() || (engine != null && !engine.getDartExecutor().isExecutingDart())) return;
updateNotificationInfo();
// Initialize Flutter if it's not already
if (!FlutterInjector.instance().flutterLoader().initialized()) {
FlutterInjector.instance().flutterLoader().startInitialization(getApplicationContext());
}
long entrypointHandle = getSharedPreferences(MoxplatformAndroidPlugin.sharedPrefKey, MODE_PRIVATE)
.getLong(MoxplatformAndroidPlugin.entrypointKey, 0);
FlutterInjector.instance().flutterLoader().ensureInitializationComplete(getApplicationContext(), null);
FlutterCallbackInformation callback = FlutterCallbackInformation.lookupCallbackInformation(entrypointHandle);
if (callback == null) {
Log.e(TAG, "Callback handle not found");
return;
}
isRunning.set(true);
engine = new FlutterEngine(this);
engine.getServiceControlSurface().attachToService(BackgroundService.this, null, true);
methodChannel = new MethodChannel(engine.getDartExecutor().getBinaryMessenger(), backgroundMethodChannelKey);
methodChannel.setMethodCallHandler(this);
Log.d(TAG, "Method channel is set up");
dartCallback = new DartExecutor.DartCallback(getAssets(), FlutterInjector.instance().flutterLoader().findAppBundlePath(), callback);
engine.getDartExecutor().executeDartCallback(dartCallback);
} catch (UnsatisfiedLinkError e) {
Log.e(TAG, "Error: " + e.getMessage());
}
}
public void receiveData(String data) {
if (methodChannel != null) {
methodChannel.invokeMethod(MoxplatformAndroidPlugin.dataReceivedMethodName, data);
}
}
@Override
public void onMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
switch (call.method) {
case "getHandler":
result.success(MoxplatformAndroidPlugin.getHandle(this));
break;
case "getExtraData":
result.success(MoxplatformAndroidPlugin.getExtraData(this));
break;
case "setNotificationBody":
String body = ((String) ((ArrayList) call.arguments).get(0));
notificationBody = body;
updateNotificationInfo();
result.success(true);
break;
case "sendData":
LocalBroadcastManager sendDataManager = LocalBroadcastManager.getInstance(this);
Intent sendDataIntent = new Intent(MoxplatformAndroidPlugin.methodChannelKey);
sendDataIntent.putExtra("data", (String) call.arguments);
sendDataManager.sendBroadcast(sendDataIntent);
result.success(true);
break;
case "stop":
isManuallyStopped = true;
Intent stopIntent = new Intent(this, WatchdogReceiver.class);
boolean aboveS = Build.VERSION.SDK_INT >= Build.VERSION_CODES.S;
PendingIntent pending = PendingIntent.getBroadcast(
getApplicationContext(),
111,
stopIntent,
PendingIntent.FLAG_CANCEL_CURRENT
// Only enable FLAG_MUTABLE when the Android version is Android S or greater
| (PendingIntent.FLAG_MUTABLE & (aboveS ? PendingIntent.FLAG_MUTABLE : 0)));
AlarmManager stopManager = (AlarmManager) getSystemService(ALARM_SERVICE);
stopManager.cancel(pending);
stopSelf();
MoxplatformAndroidPlugin.setStartAtBoot(this, false);
result.success(true);
break;
default:
result.notImplemented();
break;
}
}
@Override
public void onCreate() {
super.onCreate();
createNotificationChannel();
notificationBody = "Preparing...";
updateNotificationInfo();
}
@Override
public void onDestroy() {
if (!isManuallyStopped) {
enqueue(this);
} else {
setManuallyStopped(this,true);
}
if (engine != null) {
engine.getServiceControlSurface().detachFromService();
engine.destroy();
engine = null;
}
stopForeground(true);
isRunning.set(false);
methodChannel = null;
dartCallback = null;
super.onDestroy();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
setManuallyStopped(this,false);
enqueue(this);
runService();
getLock(getApplicationContext()).acquire();
return START_STICKY;
}
}

View File

@ -0,0 +1,19 @@
package me.polynom.moxplatform_android;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import androidx.core.content.ContextCompat;
import androidx.core.content.ContextCompat;
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (MoxplatformAndroidPlugin.getStartAtBoot(context)) {
ContextCompat.startForegroundService(context, new Intent(context, BackgroundService.class));
}
}
}

View File

@ -0,0 +1,178 @@
package me.polynom.moxplatform_android;
import android.app.ActivityManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.core.content.ContextCompat;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import java.util.ArrayList;
import java.util.List;
import io.flutter.embedding.engine.plugins.FlutterPlugin;
import io.flutter.embedding.engine.plugins.service.ServiceAware;
import io.flutter.embedding.engine.plugins.service.ServicePluginBinding;
import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;
import io.flutter.plugin.common.MethodChannel.MethodCallHandler;
import io.flutter.plugin.common.MethodChannel.Result;
import io.flutter.plugin.common.PluginRegistry.Registrar;
import io.flutter.plugin.common.JSONMethodCodec;
public class MoxplatformAndroidPlugin extends BroadcastReceiver implements FlutterPlugin, MethodCallHandler, ServiceAware {
public static final String entrypointKey = "entrypoint_handle";
public static final String extraDataKey = "extra_data";
private static final String autoStartAtBootKey = "auto_start_at_boot";
public static final String sharedPrefKey = "me.polynom.moxplatform_android";
private static final String TAG = "moxplatform_android";
public static final String methodChannelKey = "me.polynom.moxplatform_android";
public static final String dataReceivedMethodName = "dataReceived";
private static final List<MoxplatformAndroidPlugin> _instances = new ArrayList<>();
private BackgroundService service;
private MethodChannel channel;
private Context context;
public MoxplatformAndroidPlugin() {
_instances.add(this);
}
@Override
public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBinding) {
channel = new MethodChannel(flutterPluginBinding.getBinaryMessenger(), methodChannelKey);
channel.setMethodCallHandler(this);
context = flutterPluginBinding.getApplicationContext();
LocalBroadcastManager localBroadcastManager = LocalBroadcastManager.getInstance(this.context);
localBroadcastManager.registerReceiver(this, new IntentFilter(methodChannelKey));
Log.d(TAG, "Attached to engine");
}
static void registerWith(Registrar registrar) {
LocalBroadcastManager localBroadcastManager = LocalBroadcastManager.getInstance(registrar.context());
final MoxplatformAndroidPlugin plugin = new MoxplatformAndroidPlugin();
localBroadcastManager.registerReceiver(plugin, new IntentFilter(methodChannelKey));
final MethodChannel channel = new MethodChannel(registrar.messenger(), "me.polynom/background_service_android", JSONMethodCodec.INSTANCE);
channel.setMethodCallHandler(plugin);
plugin.channel = channel;
Log.d(TAG, "Registered against registrar");
}
/// Store the entrypoint handle and extra data for the background service.
private void configure(long entrypointHandle, String extraData) {
SharedPreferences prefs = context.getSharedPreferences(sharedPrefKey, Context.MODE_PRIVATE);
prefs.edit()
.putLong(entrypointKey, entrypointHandle)
.putString(extraDataKey, extraData)
.apply();
}
public static long getHandle(Context c) {
return c.getSharedPreferences(sharedPrefKey, Context.MODE_PRIVATE).getLong(entrypointKey, 0);
}
public static String getExtraData(Context c) {
return c.getSharedPreferences(sharedPrefKey, Context.MODE_PRIVATE).getString(extraDataKey, "");
}
public static void setStartAtBoot(Context c, boolean value) {
c.getSharedPreferences(sharedPrefKey, Context.MODE_PRIVATE)
.edit()
.putBoolean(extraDataKey, value)
.apply();
}
public static boolean getStartAtBoot(Context c) {
return c.getSharedPreferences(sharedPrefKey, Context.MODE_PRIVATE).getBoolean(extraDataKey, false);
}
private boolean isRunning() {
ActivityManager manager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
for (ActivityManager.RunningServiceInfo info : manager.getRunningServices(Integer.MAX_VALUE)) {
if (BackgroundService.class.getName().equals(info.service.getClassName())) {
return true;
}
}
return false;
}
@Override
public void onMethodCall(@NonNull MethodCall call, @NonNull Result result) {
switch (call.method) {
case "configure":
ArrayList args = (ArrayList) call.arguments;
long handle = (long) args.get(0);
String extraData = (String) args.get(1);
configure(handle, extraData);
result.success(true);
break;
case "isRunning":
result.success(isRunning());
break;
case "start":
MoxplatformAndroidPlugin.setStartAtBoot(context, true);
BackgroundService.enqueue(context);
Intent intent = new Intent(context, BackgroundService.class);
ContextCompat.startForegroundService(context, intent);
Log.d(TAG, "Service started");
result.success(true);
break;
case "sendData":
for (MoxplatformAndroidPlugin plugin : _instances) {
if (plugin.service != null) {
plugin.service.receiveData((String) call.arguments);
break;
}
}
result.success(true);
break;
default:
result.notImplemented();
break;
}
}
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction() == null) return;
if (intent.getAction().equalsIgnoreCase(methodChannelKey)) {
String data = intent.getStringExtra("data");
if (channel != null) {
channel.invokeMethod(dataReceivedMethodName, data);
}
}
}
@Override
public void onDetachedFromEngine(@NonNull FlutterPluginBinding binding) {
channel.setMethodCallHandler(null);
LocalBroadcastManager localBroadcastManager = LocalBroadcastManager.getInstance(this.context);
localBroadcastManager.unregisterReceiver(this);
Log.d(TAG, "Detached from engine");
}
@Override
public void onAttachedToService(@NonNull ServicePluginBinding binding) {
Log.d(TAG, "Attached to service");
this.service = (BackgroundService) binding.getService();
}
@Override
public void onDetachedFromService() {
Log.d(TAG, "Detached from service");
this.service = null;
}
}

View File

@ -0,0 +1,16 @@
package me.polynom.moxplatform_android;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import androidx.core.content.ContextCompat;
public class WatchdogReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if(!BackgroundService.isManuallyStopped(context)){
ContextCompat.startForegroundService(context, new Intent(context, BackgroundService.class));
}
}
}

View File

@ -1,34 +0,0 @@
package com.example.my_plugin
import android.content.Context
import androidx.annotation.NonNull
import io.flutter.embedding.engine.plugins.FlutterPlugin
import io.flutter.plugin.common.MethodCall
import io.flutter.plugin.common.MethodChannel
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
import io.flutter.plugin.common.MethodChannel.Result
class MyPluginPlugin : FlutterPlugin, MethodCallHandler {
private lateinit var channel: MethodChannel
private var context: Context? = null
override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "my_plugin_android")
channel.setMethodCallHandler(this)
context = flutterPluginBinding.applicationContext
}
override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) {
if (call.method == "getPlatformName") {
result.success("Android")
} else {
result.notImplemented()
}
}
override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) {
channel.setMethodCallHandler(null)
context = null
}
}

View File

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="#FFFFFF">
<group android:scaleX="0.017628439"
android:scaleY="0.017628439"
android:translateX="3.3885078"
android:translateY="3.3479624">
<group>
<clip-path
android:pathData="M464.6,880.91 L114.63,919.02h0A83.2,83.2 0,0 1,31.42 835.81h0L69.48,486.3c1.67,-15.34 2.93,-30.73 3.53,-46.14C81.79,215.47 266.71,36.02 493.55,36.02h0C725.99,36.02 914.42,224.45 914.42,456.89h0c0,227 -179.7,412 -404.6,420.56C494.71,878.02 479.63,879.27 464.6,880.91Z"/>
<path
android:pathData="M464.6,880.91 L114.63,919.02h0A83.2,83.2 0,0 1,31.42 835.81h0L69.48,486.3c1.67,-15.34 2.93,-30.73 3.53,-46.14C81.79,215.47 266.71,36.02 493.55,36.02h0C725.99,36.02 914.42,224.45 914.42,456.89h0c0,227 -179.7,412 -404.6,420.56C494.71,878.02 479.63,879.27 464.6,880.91Z"
android:fillColor="#a139f0"/>
<path
android:pathData="M467.42,845.7 L122.99,918.35h0a83.2,83.2 0,0 1,-91 -74.54h0L35.12,492.25c0.14,-15.43 -0.13,-30.87 -1.06,-46.27C20.5,221.54 186.71,24.62 412.42,2.11h0C643.71,-20.98 849.91,147.85 872.98,379.14h0C895.5,605.02 735.05,806.95 512.11,837.77 497.13,839.84 482.25,842.58 467.42,845.7Z"
android:fillColor="#cf4aff"/>
</group>
<path
android:pathData="M354.58,675.55a83.9,83.9 0,1 1,-90.8 -76.37A83.91,83.91 0,0 1,354.58 675.55ZM585.27,571.43a83.9,83.9 0,1 0,90.8 76.38A83.91,83.91 0,0 0,585.27 571.43ZM291.62,272.89A83.9,83.9 0,1 0,382.42 349.27,83.9 83.9,0 0,0 291.62,272.89ZM671.29,191.69A83.9,83.9 0,1 0,762.09 268.02,83.9 83.9,0 0,0 671.29,191.69Z"
android:fillColor="#fff"/>
<path
android:pathData="M592.48,655.02 L270.99,682.77l27.62,-326.59ZM678.24,275.57L592.48,655.02"
android:strokeWidth="40.98"
android:fillColor="#00000000"
android:strokeColor="#fff"/>
</group>
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 B

View File

@ -4,59 +4,67 @@ import "dart:ui";
import "package:moxplatform_android/service_android.dart"; import "package:moxplatform_android/service_android.dart";
import "package:flutter/widgets.dart"; import "package:flutter/widgets.dart";
import "package:flutter/services.dart";
import "package:logging/logging.dart"; import "package:logging/logging.dart";
import "package:get_it/get_it.dart";
import "package:flutter_background_service/flutter_background_service.dart";
import "package:flutter_background_service_android/flutter_background_service_android.dart";
import "package:moxplatform_platform_interface/src/isolate.dart"; import "package:moxplatform_platform_interface/src/isolate.dart";
import "package:moxplatform_platform_interface/src/service.dart"; import "package:moxplatform_platform_interface/src/service.dart";
import "package:moxplatform/types.dart"; import "package:moxplatform/types.dart";
import "package:moxlib/awaitabledatasender.dart"; import "package:moxlib/awaitabledatasender.dart";
import "package:get_it/get_it.dart";
/// An [AwaitableDataSender] that uses flutter_background_service. /// An [AwaitableDataSender] that uses flutter_background_service.
class BackgroundServiceDataSender extends AwaitableDataSender<BackgroundCommand, BackgroundEvent> { class BackgroundServiceDataSender extends AwaitableDataSender<BackgroundCommand, BackgroundEvent> {
final FlutterBackgroundService _srv; final MethodChannel _channel;
BackgroundServiceDataSender() : _channel = MethodChannel("me.polynom.moxplatform_android"), super();
BackgroundServiceDataSender() : _srv = FlutterBackgroundService(), super();
@override @override
Future<void> sendDataImpl(DataWrapper data) async { Future<void> sendDataImpl(DataWrapper data) async {
_srv.invoke("command", data.toJson()); await _channel.invokeMethod("sendData", jsonEncode(data.toJson()));
} }
} }
void onStart(ServiceInstance instance, String extra) { Future<void> androidEntrypoint() async {
final data = jsonDecode(extra); print("androidEntrypoint: Called on new FlutterEngine");
final int entrypointHandle = data["entrypointHandle"]!; WidgetsFlutterBinding.ensureInitialized();
/*
AndroidBackgroundService.channel.setMethodCallHandler((MethodCall call) async {
print(call.method);
});*/
final data = jsonDecode(await AndroidBackgroundService.channel.invokeMethod("getExtraData", []));
final int entrypointHandle = data["genericEntrypoint"]!;
final entrypointCallbackHandle = CallbackHandle.fromRawHandle(entrypointHandle); final entrypointCallbackHandle = CallbackHandle.fromRawHandle(entrypointHandle);
final entrypoint = PluginUtilities.getCallbackFromHandle(entrypointCallbackHandle); final entrypoint = PluginUtilities.getCallbackFromHandle(entrypointCallbackHandle);
final int handleUIEventHandle = data["eventHandle"]!; final int handleUIEventHandle = data["eventHandle"]!;
final handleUIEventCallbackHandle = CallbackHandle.fromRawHandle(handleUIEventHandle); final handleUIEventCallbackHandle = CallbackHandle.fromRawHandle(handleUIEventHandle);
final handleUIEvent = PluginUtilities.getCallbackFromHandle(handleUIEventCallbackHandle); final handleUIEvent = PluginUtilities.getCallbackFromHandle(handleUIEventCallbackHandle);
final srv = AndroidBackgroundService(instance as AndroidServiceInstance); final srv = AndroidBackgroundService();
GetIt.I.registerSingleton<BackgroundService>(srv); GetIt.I.registerSingleton<BackgroundService>(srv);
srv.init( srv.init(
() async => await entrypoint!(), entrypoint! as Future<void> Function(),
(data) async => await handleUIEvent!(data) handleUIEvent! as Future<void> Function(Map<String, dynamic>? data)
); );
} }
/// The Android specific implementation of the [IsolateHandler]. /// The Android specific implementation of the [IsolateHandler].
class AndroidIsolateHandler extends IsolateHandler { class AndroidIsolateHandler extends IsolateHandler {
final FlutterBackgroundService _srv;
final BackgroundServiceDataSender _dataSender; final BackgroundServiceDataSender _dataSender;
final MethodChannel _channel;
final Logger _log; final Logger _log;
AndroidIsolateHandler() AndroidIsolateHandler()
: _srv = FlutterBackgroundService(), : _channel = MethodChannel("me.polynom.moxplatform_android"),
_dataSender = BackgroundServiceDataSender(), _dataSender = BackgroundServiceDataSender(),
_log = Logger("AndroidIsolateHandler"), _log = Logger("AndroidIsolateHandler"),
super(); super();
@override @override
void attach(Future<void> Function(Map<String, dynamic>? data) handleIsolateEvent) { Future<void> attach(Future<void> Function(Map<String, dynamic>? data) handleIsolateEvent) async {
_srv.on("event").listen(handleIsolateEvent); _channel.setMethodCallHandler((MethodCall call) async {
await handleIsolateEvent(jsonDecode(call.arguments));
});
} }
@override @override
@ -68,26 +76,18 @@ class AndroidIsolateHandler extends IsolateHandler {
_log.finest("Called start"); _log.finest("Called start");
WidgetsFlutterBinding.ensureInitialized(); WidgetsFlutterBinding.ensureInitialized();
_srv.on("event").listen(handleIsolateEvent); await _channel.invokeMethod("configure", [
await _srv.configure( PluginUtilities.getCallbackHandle(androidEntrypoint)!.toRawHandle(),
iosConfiguration: IosConfiguration( jsonEncode({
autoStart: true, "genericEntrypoint": PluginUtilities.getCallbackHandle(entrypoint)!.toRawHandle(),
onBackground: (_) => true,
onForeground: (_, __) => true
),
androidConfiguration: AndroidConfiguration(
extraData: jsonEncode(
{
"entrypointHandle": PluginUtilities.getCallbackHandle(entrypoint)!.toRawHandle(),
"eventHandle": PluginUtilities.getCallbackHandle(handleUIEvent)!.toRawHandle() "eventHandle": PluginUtilities.getCallbackHandle(handleUIEvent)!.toRawHandle()
} })
), ]);
onStart: onStart,
autoStart: true, await attach(handleIsolateEvent);
isForegroundMode: true
) final result = await _channel.invokeMethod("start", []);
); if (result) {
if (await _srv.startService()) {
_log.finest("Service successfully started"); _log.finest("Service successfully started");
} else { } else {
_log.severe("Service failed to start"); _log.severe("Service failed to start");
@ -97,8 +97,7 @@ class AndroidIsolateHandler extends IsolateHandler {
@override @override
Future<bool> isRunning() async { Future<bool> isRunning() async {
WidgetsFlutterBinding.ensureInitialized(); WidgetsFlutterBinding.ensureInitialized();
return await _channel.invokeMethod("isRunning", []);
return await _srv.isRunning();
} }
@override @override

View File

@ -5,7 +5,7 @@ import "package:moxplatform_platform_interface/moxplatform_platform_interface.da
class MoxplatformAndroidPlugin extends MoxplatformInterface { class MoxplatformAndroidPlugin extends MoxplatformInterface {
static void registerWith() { static void registerWith() {
print("========================================================================================"); print("MoxplatformAndroidPlugin: Registering implementation");
MoxplatformInterface.handler = AndroidIsolateHandler(); MoxplatformInterface.handler = AndroidIsolateHandler();
MoxplatformInterface.media = AndroidMediaScannerImplementation(); MoxplatformInterface.media = AndroidMediaScannerImplementation();
} }

View File

@ -0,0 +1,17 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'moxplatform_android_platform_interface.dart';
/// An implementation of [MoxplatformAndroidPlatform] that uses method channels.
class MethodChannelMoxplatformAndroid extends MoxplatformAndroidPlatform {
/// The method channel used to interact with the native platform.
@visibleForTesting
final methodChannel = const MethodChannel('moxplatform_android');
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
return version;
}
}

View File

@ -0,0 +1,29 @@
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
import 'moxplatform_android_method_channel.dart';
abstract class MoxplatformAndroidPlatform extends PlatformInterface {
/// Constructs a MoxplatformAndroidPlatform.
MoxplatformAndroidPlatform() : super(token: _token);
static final Object _token = Object();
static MoxplatformAndroidPlatform _instance = MethodChannelMoxplatformAndroid();
/// The default instance of [MoxplatformAndroidPlatform] to use.
///
/// Defaults to [MethodChannelMoxplatformAndroid].
static MoxplatformAndroidPlatform get instance => _instance;
/// Platform-specific implementations should set this with their own
/// platform-specific class that extends [MoxplatformAndroidPlatform] when
/// they register themselves.
static set instance(MoxplatformAndroidPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}
Future<String?> getPlatformVersion() {
throw UnimplementedError('platformVersion() has not been implemented.');
}
}

View File

@ -1,25 +1,30 @@
import "dart:convert";
import "dart:ui"; import "dart:ui";
import "package:moxplatform_platform_interface/src/service.dart"; import "package:moxplatform_platform_interface/src/service.dart";
import "package:moxplatform/types.dart"; import "package:moxplatform/types.dart";
import "package:moxlib/awaitabledatasender.dart"; import "package:moxlib/awaitabledatasender.dart";
import "package:flutter/material.dart"; import "package:flutter/material.dart";
import "package:flutter/services.dart";
import "package:logging/logging.dart"; import "package:logging/logging.dart";
import "package:uuid/uuid.dart"; import "package:uuid/uuid.dart";
import "package:flutter_background_service_android/flutter_background_service_android.dart"; import "package:meta/meta.dart";
class AndroidBackgroundService extends BackgroundService { class AndroidBackgroundService extends BackgroundService {
@internal
static const MethodChannel channel = MethodChannel("me.polynom.moxplatform_android_bg");
final Logger _log; final Logger _log;
final AndroidServiceInstance _srv;
AndroidBackgroundService(AndroidServiceInstance srv) AndroidBackgroundService()
: _srv = srv, : _log = Logger("AndroidBackgroundService"),
_log = Logger("AndroidBackgroundService"),
super(); super();
@override @override
void setNotification(String title, String body) { void setNotification(String title, String body) {
_srv.setForegroundNotificationInfo(title: title, content: body); channel.invokeMethod(
"setNotificationBody",
[ body ]
);
} }
@override @override
@ -30,13 +35,13 @@ class AndroidBackgroundService extends BackgroundService {
); );
// NOTE: *S*erver to *F*oreground // NOTE: *S*erver to *F*oreground
_log.fine("S2F: ${data.toJson().toString()}"); _log.fine("S2F: ${data.toJson().toString()}");
_srv.invoke("event", data.toJson()); channel.invokeMethod("sendData", jsonEncode(data.toJson()));
} }
@override @override
void init( void init(
Future<void> Function() entrypoint, Future<void> Function() entrypoint,
void Function(Map<String, dynamic>? data) handleEvent Future<void> Function(Map<String, dynamic>? data) handleEvent
) { ) {
WidgetsFlutterBinding.ensureInitialized(); WidgetsFlutterBinding.ensureInitialized();
@ -44,7 +49,11 @@ class AndroidBackgroundService extends BackgroundService {
// we can use path_provider, notifications, ... // we can use path_provider, notifications, ...
DartPluginRegistrant.ensureInitialized(); DartPluginRegistrant.ensureInitialized();
_srv.on("command").listen(handleEvent); // Register the event handler
channel.setMethodCallHandler((MethodCall call) async {
await handleEvent(jsonDecode(call.arguments));
});
setNotification("Moxxy", "Preparing..."); setNotification("Moxxy", "Preparing...");
_log.finest("Running..."); _log.finest("Running...");

View File

@ -12,24 +12,25 @@ flutter:
implements: moxplatform implements: moxplatform
platforms: platforms:
android: android:
package: com.example.my_plugin package: me.polynom.moxplatform_android
pluginClass: MyPluginPlugin pluginClass: MoxplatformAndroidPlugin
dartPluginClass: MoxplatformAndroidPlugin dartPluginClass: MoxplatformAndroidPlugin
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
moxplatform_platform_interface: moxplatform_platform_interface:
git: #git:
url: https://codeberg.org/moxxy/moxplatform.git # url: https://codeberg.org/moxxy/moxplatform.git
rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1 # rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1
path: src/moxplatform_platform_interface # path: src/moxplatform_platform_interface
path: ../moxplatform_platform_interface
moxplatform: moxplatform:
git: #git:
url: https://codeberg.org/moxxy/moxplatform.git # url: https://codeberg.org/moxxy/moxplatform.git
rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1 # rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1
path: src/moxplatform # path: src/moxplatform
path: ../moxplatform
moxlib: moxlib:
git: git:
url: https://codeberg.org/moxxy/moxlib.git url: https://codeberg.org/moxxy/moxlib.git
@ -37,12 +38,6 @@ dependencies:
logging: 1.0.2 logging: 1.0.2
get_it: 7.2.0 get_it: 7.2.0
uuid: 3.0.5 uuid: 3.0.5
flutter_background_service:
git:
url: https://github.com/PapaTutuWawa/flutter_background_service.git
rev: moxxy/additional-data
path: packages/flutter_background_service
media_scanner: 2.0.0 media_scanner: 2.0.0
dev_dependencies: dev_dependencies:

View File

@ -0,0 +1,24 @@
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:moxplatform_android/moxplatform_android_method_channel.dart';
void main() {
MethodChannelMoxplatformAndroid platform = MethodChannelMoxplatformAndroid();
const MethodChannel channel = MethodChannel('moxplatform_android');
TestWidgetsFlutterBinding.ensureInitialized();
setUp(() {
channel.setMockMethodCallHandler((MethodCall methodCall) async {
return '42';
});
});
tearDown(() {
channel.setMockMethodCallHandler(null);
});
test('getPlatformVersion', () async {
expect(await platform.getPlatformVersion(), '42');
});
}

View File

@ -15,7 +15,7 @@ abstract class IsolateHandler {
); );
/// Make sure that the UI event handler is registered without starting the isolate. /// Make sure that the UI event handler is registered without starting the isolate.
void attach( Future<void> attach(
Future<void> Function(Map<String, dynamic>? data) handleIsolateEvent Future<void> Function(Map<String, dynamic>? data) handleIsolateEvent
); );

View File

@ -14,9 +14,9 @@ class StubIsolateHandler extends IsolateHandler {
StubIsolateHandler() : _sender = StubDataSender(); StubIsolateHandler() : _sender = StubDataSender();
@override @override
void attach( Future<void> attach(
Future<void> Function(Map<String, dynamic>? data) handleIsolateEvent Future<void> Function(Map<String, dynamic>? data) handleIsolateEvent
) { ) async {
print("STUB ATTACHED!!!!!!"); print("STUB ATTACHED!!!!!!");
} }

View File

@ -12,6 +12,6 @@ abstract class BackgroundService {
/// data. /// data.
void init( void init(
Future<void> Function() entrypoint, Future<void> Function() entrypoint,
void Function(Map<String, dynamic>? data) handleEvent Future<void> Function(Map<String, dynamic>? data) handleEvent
); );
} }

View File

@ -11,10 +11,11 @@ dependencies:
sdk: flutter sdk: flutter
plugin_platform_interface: ^2.1.0 plugin_platform_interface: ^2.1.0
moxplatform: moxplatform:
git: #git:
url: https://codeberg.org/moxxy/moxplatform.git # url: https://codeberg.org/moxxy/moxplatform.git
rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1 # rev: c19ae302bb8d2e2bd8db220cc6a9a488c33e05d1
path: src/moxplatform # path: src/moxplatform
path: ../moxplatform
moxlib: moxlib:
git: git: