File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.7.3
2
+
3
+ * [ Fix] Garbage characters on Android.
4
+
1
5
## 0.7.2
2
6
3
7
* [ Fix] Support Promise on Android.
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ packages:
168
168
path: ".."
169
169
relative: true
170
170
source: path
171
- version: "0.7.2 "
171
+ version: "0.7.3 "
172
172
dart_native_gen:
173
173
dependency: transitive
174
174
description:
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ String? fromUtf16(Pointer<Void> uint16Ptr) {
223
223
length += uint16Ptr.cast <Uint16 >().elementAt (i).value;
224
224
}
225
225
Uint16List list = uint16Ptr.cast <Uint16 >().asTypedList (length + 3 );
226
- calloc.free (uint16Ptr);
227
226
final codes = String .fromCharCodes (list.sublist (2 , length + 2 ));
227
+ calloc.free (uint16Ptr);
228
228
return codes;
229
229
}
Original file line number Diff line number Diff line change 1
1
name : dart_native
2
2
description : Write native code using Dart. This package liberates you from native code and low performance channel.
3
- version : 0.7.2
3
+ version : 0.7.3
4
4
homepage : https://github.com/dart-native/dart_native
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments