| # |
| # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html |
| # |
| Pod::Spec.new do |s| |
| s.name = 'shared_preferences_foundation' |
| s.version = '0.0.1' |
| s.summary = 'iOS and macOS implementation of the shared_preferences plugin.' |
| s.description = <<-DESC |
| Wraps NSUserDefaults, providing a persistent store for simple key-value pairs. |
| DESC |
| s.homepage = 'https://github.com/flutter/packages/tree/main/packages/shared_preferences/shared_preferences_foundation' |
| s.license = { :type => 'BSD', :file => '../LICENSE' } |
| s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' } |
| s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/shared_preferences/shared_preferences_foundation' } |
| s.source_files = 'Classes/**/*' |
| s.ios.dependency 'Flutter' |
| s.osx.dependency 'FlutterMacOS' |
| s.ios.deployment_target = '9.0' |
| s.osx.deployment_target = '10.11' |
| s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } |
| s.xcconfig = { |
| 'LIBRARY_SEARCH_PATHS' => '$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)/ $(SDKROOT)/usr/lib/swift', |
| 'LD_RUNPATH_SEARCH_PATHS' => '/usr/lib/swift', |
| } |
| s.swift_version = '5.0' |
| |
| end |