Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix flutter iOS symbol not found bug #575

Merged
merged 1 commit into from
Nov 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# MMKV for Flutter Change Log

## v1.2.7 / 2020-11-27
Fix iOS symbol not found bug.

## v1.2.6 / 2020-11-27
The first official flutter plugin of MMKV. Most things actually work!
2 changes: 1 addition & 1 deletion flutter/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.2.6"
version: "1.2.7"
path:
dependency: transitive
description:
Expand Down
6 changes: 6 additions & 0 deletions flutter/ios/Classes/flutter-bridge.mm
Original file line number Diff line number Diff line change
Expand Up @@ -488,3 +488,9 @@ MMKV_EXPORT void checkContentChanged(const void *handle) {
}
}
*/

@interface MMKVDummy : NSObject
@end

@implementation MMKVDummy
@end
2 changes: 1 addition & 1 deletion flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mmkv
description: An efficient, small mobile key-value storage framework developed by WeChat. Works on Android, iOS, macOS, Windows, and POSIX.
version: 1.2.6
version: 1.2.7
homepage: https://github.com/Tencent/mmkv

environment:
Expand Down