# # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html # Pod::Spec.new do |s| s.name = 'geolocator_apple' s.version = '1.2.0' s.summary = 'Geolocation macOS plugin for Flutter.' s.description = <<-DESC Geolocation macOS plugin for Flutter. This plugin provides the Apple implementation for the geolocator plugin. DESC s.homepage = 'http://github.com/baseflow/flutter-geolocator' s.license = { :type => 'MIT', :file => '../LICENSE' } s.author = { 'Baseflow' => 'hello@baseflow.com' } s.source = { :http => 'https://github.com/baseflow/flutter-geolocator/tree/master/' } s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' s.dependency 'FlutterMacOS' s.platform = :osx, '10.11' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } end