Skip to content

Commit a0aa69d

Browse files
committed
0.7.9
1 parent 526a3e8 commit a0aa69d

File tree

8 files changed

+22
-12
lines changed

8 files changed

+22
-12
lines changed

dart_native/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.7.9
2+
3+
* Bump to ffi >=1.1.2
4+
* [Fix] Thread Performance Checker issue
5+
* [Fix] Flutter debug warning
6+
17
## 0.7.8
28

39
* [Fix] Build error on Xcode 12.

dart_native/example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SPEC CHECKSUMS:
2828
ClassWrittenInSwift: 84b95c3ec2633b0a18ffdcabf8365a5833a2154c
2929
CocoaLumberjack: 543c79c114dadc3b1aba95641d8738b06b05b646
3030
dart_native: a9824de4c77f34e6a27da6d8eb21784efd5512c7
31-
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
31+
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
3232

3333
PODFILE CHECKSUM: 6e9979e89c4dd9698b3ed55a88e6a5100fa0dc38
3434

dart_native/example/ios/Runner/Info.plist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,9 @@
4545
</array>
4646
<key>UIViewControllerBasedStatusBarAppearance</key>
4747
<true/>
48+
<key>NSBonjourServices</key>
49+
<array>
50+
<string>_dartobservatory._tcp</string>
51+
</array>
4852
</dict>
4953
</plist>

dart_native/example/ios/Runner/RuntimeStub.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ - (instancetype)init {
2626
self = [super init];
2727
if (self) {
2828
_object = [NSObject new];
29-
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_global_queue(QOS_CLASS_DEFAULT, 0), ^{
29+
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_global_queue(QOS_CLASS_BACKGROUND, 0), ^{
3030
[NSNotificationCenter.defaultCenter postNotificationName:@"SampleDartNotification" object:nil];
3131
});
3232
}

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.7.8"
171+
version: "0.7.9"
172172
dart_native_gen:
173173
dependency: transitive
174174
description:

dart_native/ios/DartNative.xcframework/Info.plist

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-arm64_armv7</string>
9+
<string>ios-i386_x86_64-simulator</string>
1010
<key>LibraryPath</key>
1111
<string>DartNative.framework</string>
1212
<key>SupportedArchitectures</key>
1313
<array>
14-
<string>arm64</string>
15-
<string>armv7</string>
14+
<string>i386</string>
15+
<string>x86_64</string>
1616
</array>
1717
<key>SupportedPlatform</key>
1818
<string>ios</string>
19+
<key>SupportedPlatformVariant</key>
20+
<string>simulator</string>
1921
</dict>
2022
<dict>
2123
<key>LibraryIdentifier</key>
22-
<string>ios-i386_x86_64-simulator</string>
24+
<string>ios-arm64_armv7</string>
2325
<key>LibraryPath</key>
2426
<string>DartNative.framework</string>
2527
<key>SupportedArchitectures</key>
2628
<array>
27-
<string>i386</string>
28-
<string>x86_64</string>
29+
<string>arm64</string>
30+
<string>armv7</string>
2931
</array>
3032
<key>SupportedPlatform</key>
3133
<string>ios</string>
32-
<key>SupportedPlatformVariant</key>
33-
<string>simulator</string>
3434
</dict>
3535
</array>
3636
<key>CFBundlePackageType</key>
0 Bytes
Binary file not shown.

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.7.8
3+
version: 0.7.9
44
homepage: https://github.com/dart-native/dart_native
55

66
environment:

0 commit comments

Comments
 (0)