Skip to content

Commit 9bd7f13

Browse files
committed
Merge branch 'release/0.3.23'
2 parents 2ae3704 + cf33890 commit 9bd7f13

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+804
-793
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ build/
1010

1111
.cxx/
1212

13-
.fvm/
13+
**/.fvm/flutter_sdk

.vscode/launch.json

-14
This file was deleted.

.vscode/settings.json

-4
This file was deleted.

dart_native/.fvm/fvm_config.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"flutterSdkVersion": "1.22.6",
3+
"flavors": {}
4+
}

dart_native/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1+
## 0.3.23
2+
3+
* [Fix] Some issues on 32-bit Android.
4+
15
## 0.3.22
26

37
* [Fix] Callbacks from multi-isolates on iOS.
48

59
## 0.3.21
610

7-
* [Fix] Some crash on Android.
11+
* [Fix] Some crashes on Android.
812

913
## 0.3.20
1014

1115
* [Feature] Support 64 bit on Android.
1216

1317
## 0.3.19
1418

15-
* [Fix] Some crash on Android.
19+
* [Fix] Some crashes on Android.
1620

1721
## 0.3.18
1822

dart_native/android/src/main/java/com/dartnative/dart_native/ArrayListConverter.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import java.util.ArrayList;
55
import java.util.Arrays;
66
import java.util.Collections;
7-
import java.util.HashSet;
87
import java.util.List;
98
import java.util.Set;
109

@@ -143,7 +142,7 @@ public List arrayToList(Object array) {
143142

144143
/************************set to list***************************************/
145144

146-
public List setToList(HashSet<Object> set) {
145+
public List setToList(Set<Object> set) {
147146
if (set == null || set.size() == 0) {
148147
return new ArrayList();
149148
}

0 commit comments

Comments
 (0)