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+
15## 0.7.2
26
37* [ Fix] Support Promise on Android.
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ packages:
168168 path: ".."
169169 relative: true
170170 source: path
171- version: "0.7.2 "
171+ version: "0.7.3 "
172172 dart_native_gen:
173173 dependency: transitive
174174 description:
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ String? fromUtf16(Pointer<Void> uint16Ptr) {
223223 length += uint16Ptr.cast <Uint16 >().elementAt (i).value;
224224 }
225225 Uint16List list = uint16Ptr.cast <Uint16 >().asTypedList (length + 3 );
226- calloc.free (uint16Ptr);
227226 final codes = String .fromCharCodes (list.sublist (2 , length + 2 ));
227+ calloc.free (uint16Ptr);
228228 return codes;
229229}
Original file line number Diff line number Diff line change 11name : dart_native
22description : 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
44homepage : https://github.com/dart-native/dart_native
55
66environment :
You can’t perform that action at this time.
0 commit comments