File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed
packages/shared_preferences/shared_preferences_linux Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.2
2
+ * Add iOS stub.
3
+
1
4
## 0.0.1
2
5
* Initial release to support shared_preferences on Linux.
Original file line number Diff line number Diff line change
1
+ #
2
+ # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
3
+ # Run `pod lib lint shared_preferences_launcher_linux.podspec' to validate before publishing.
4
+ #
5
+ Pod ::Spec . new do |s |
6
+ s . name = 'shared_preferences_linux'
7
+ s . version = '0.0.1'
8
+ s . summary = 'shared_preferences_linux iOS stub'
9
+ s . description = <<-DESC
10
+ No-op implementation of the Linux shared_preferences plugin to avoid build issues on iOS
11
+ DESC
12
+ s . homepage = 'https://github.com/flutter/plugins'
13
+ s . license = { :type => 'BSD' , :file => '../LICENSE' }
14
+ s . author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
15
+ s . source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/shared_preferences/shared_preferences_linux' }
16
+ s . dependency 'Flutter'
17
+ s . platform = :ios , '8.0'
18
+
19
+ # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
20
+ s . pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' , 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
21
+ s . swift_version = '5.0'
22
+ end
Original file line number Diff line number Diff line change 1
1
name : shared_preferences_linux
2
2
description : Linux implementation of the shared_preferences plugin
3
- version : 0.0.1
3
+ version : 0.0.2
4
4
homepage : https://github.com/flutter/plugins/tree/master/packages/shared_preferences/shared_preferences_linux
5
5
6
6
flutter :
You can’t perform that action at this time.
0 commit comments