1# 2# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html. 3# Run `pod lib lint ejdb2_flutter.podspec' to validate before publishing. 4# 5Pod::Spec.new do |s| 6 s.name = 'ejdb2_flutter' 7 s.version = '1.0.10' 8 s.summary = 'Embeddable JSON Database engine EJDB http://ejdb.org Flutter binding' 9 s.description = <<-DESC 10Embeddable JSON Database engine EJDB http://ejdb.org Flutter binding 11 DESC 12 s.homepage = 'https://ejdb.org' 13 s.license = { :file => '../LICENSE' } 14 s.author = { 'Softmotions Ltd.' => 'info@softmotions.com' } 15 s.source = { :path => '.' } 16 s.source_files = 'Classes/**/*' 17 s.static_framework = true 18 s.dependency 'Flutter' 19 s.dependency 'PathKit' 20 s.dependency 'EJDB2' 21 s.platform = :ios, '9.0' 22 23 # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported. 24 s.pod_target_xcconfig = { 25 'DEFINES_MODULE' => 'YES', 26 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' 27 } 28 s.swift_version = '5.1' 29end 30