だから、ここで私の MethodChannel を Flutter に実装しようとしています。
これが私のコードスニペットの一部です。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.mypackage">
<!-- rest of the code -->
<application
android:requestLegacyExternalStorage="true"
android:allowBackup="false"
android:name=".Application"
android:label="My App Name"
android:usesCleartextTraffic="true"
tools:replace="android:label"
android:icon="@mipmap/ic_launcher">
<service
android:name=".MyService"
android:enabled="true"
android:exported="true" />
<activity
android:name=".MainActivity"
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">
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<!-- rest of the code -->
</application>
そして、これが私のMainActivityがどのように見えるかです
public class MainActivity extends FlutterActivity {
private Intent forService;
@Override
public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) {
GeneratedPluginRegistrant.registerWith(flutterEngine);
forService = new Intent(this, MyService.class);
new MethodChannel(flutterEngine.getDartExecutor().getBinaryMessenger(), "com.mypackage.messages")
.setMethodCallHandler(
(methodCall, result) -> {
Log.d("method", "method " + methodCall.method);
if (methodCall.method.equals("startService")) {
startService();
result.success("Service Started");
}
if (methodCall.method.equals("stopService")) {
stopService();
result.success("Service Stoped");
}
}
);
}
private void startService() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(forService);
} else {
startService(forService);
}
}
private void stopService() {
stopService(forService);
}
}
これが、Dart 側から自分の MethodChannel を呼び出す方法です。
if (Platform.isAndroid) {
var methodChannel = MethodChannel("com.mypackage.messages");
String data = await methodChannel.invokeMethod("startService");
debugPrint(data);
}
上記のコードを main.dart に入れました。実際には、特定の時間にコールバックが呼び出される AlarmManager を使用しています。そして、そのコールバックは、メソッド チャネルで既に定義したメソッド 'startService' を呼び出す必要があります。
しかし、時間が来てメソッドを呼び出すと、
Unhandled Exception: MissingPluginException(No implementation found for method startService on channel com.mypackage.messages)
SO と Github で同様のエラーについて議論している多くの回答を見つけましたが、そこに記載されているすべてのケースは、誰かが他のプラグインを実装しているときに発生しました。この場合、私は独自の MethodChannel を実行しています。
したがって、ここで MethodChannel 構成のどの部分が欠落している可能性があるのか 、または何か間違っているのだろうかと思っていました。どんな助けでも大歓迎です。