Browse Source

修复channel名字错误bug

tags/0.1.1^0
Weller 2 years ago
parent
commit
2e3af47528
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      android/src/main/java/com/wxwx/flutter_alibc/FlutterAlibcPlugin.java

+ 1
- 1
android/src/main/java/com/wxwx/flutter_alibc/FlutterAlibcPlugin.java View File

@@ -22,7 +22,7 @@ public class FlutterAlibcPlugin implements FlutterPlugin, MethodChannel.MethodC

@Override
public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBinding) {
channel = new MethodChannel(flutterPluginBinding.getBinaryMessenger(), "zhiying_live_ali");
channel = new MethodChannel(flutterPluginBinding.getBinaryMessenger(), "flutter_alibc");
channel.setMethodCallHandler(this);
handle = new FlutterAlibcHandle(channel);
}


Loading…
Cancel
Save