Skip to content

Commit b410edf

Browse files
committed
Merge branch 'release/0.3.15'
2 parents b5133ad + 094e3b9 commit b410edf

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

dart_native/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.15
2+
3+
* [Fix] Performance issue on iOS.
4+
15
## 0.3.14
26

37
* [Feature] Support `await/async` for methods on iOS.

dart_native/example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ packages:
168168
path: ".."
169169
relative: true
170170
source: path
171-
version: "0.3.14"
171+
version: "0.3.15"
172172
dart_native_gen:
173173
dependency: transitive
174174
description:

dart_native/lib/src/ios/runtime/message.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Pointer<Void> _sendMsgToNative(
2828
if (args == null || args == nullptr) {
2929
args = nullptr.cast();
3030
}
31-
if (callbackPtr == null) {
32-
callbackPtr = nullptr;
31+
if (callbackPtr == nullptr) {
32+
callbackPtr = nullptr.cast();
3333
}
3434
result = nativeInvokeMethod(
3535
target, selector, signature, queuePtr, args, callbackPtr);

dart_native/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_native
22
description: Write native code using Dart. This package liberates you from native code and low performance channel.
3-
version: 0.3.14
3+
version: 0.3.15
44
homepage: https://github.com/dart-native/dart_native
55

66
environment:

0 commit comments

Comments
 (0)