Skip to content

Commit 4f63b84

Browse files
committed
Handle setIosAlertMessage method
1 parent 804df35 commit 4f63b84

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ohos/src/main/ets/components/plugin/FlutterNfcKitPlugin.ets

+5
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,10 @@ export default class FlutterNfcKitPlugin implements FlutterPlugin, MethodCallHan
140140
});
141141
} else if (call.method == "transceive") {
142142
let tx: string = call.argument("data");
143+
hilog.info(0x0000, "FlutterNfcKitPlugin", "transceive: tx=%{public}s", JSON.stringify(tx));
143144
this.tag!.connect();
144145
this.tag!.transmit(fromHexString(tx)).then((rx) => {
146+
hilog.info(0x0000, "FlutterNfcKitPlugin", "transceive: rx=%{public}s", JSON.stringify(rx));
145147
result.success(toHexString(rx));
146148
}).catch((err: BusinessError) => {
147149
hilog.info(0x0000, "FlutterNfcKitPlugin", "Failed to transceive: err=%{public}s", JSON.stringify(err));
@@ -151,6 +153,9 @@ export default class FlutterNfcKitPlugin implements FlutterPlugin, MethodCallHan
151153
// turn off reader mode
152154
tag.off("readerMode", elementName, (err: BusinessError, tagInfo: tag.TagInfo) => {});
153155
result.success("");
156+
} else if (call.method == "setIosAlertMessage") {
157+
// do nothing, just for compatibility
158+
result.success("");
154159
} else {
155160
result.notImplemented();
156161
}

0 commit comments

Comments
 (0)