| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #
- # Be sure to run `pod lib lint Firestore.podspec' to ensure this is a
- # valid spec before submitting.
- #
- # Any lines starting with a # are optional, but their use is encouraged
- # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
- #
- Pod::Spec.new do |s|
- s.name = 'Firestore'
- s.version = '0.1.0'
- s.summary = 'Google Cloud Firestore for iOS'
- s.description = <<-DESC
- Google Cloud Firestore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
- DESC
- s.homepage = 'https://developers.google.com/'
- s.license = { :type => 'Apache', :file => '../LICENSE' }
- s.authors = 'Google, Inc.'
- s.source = { :git => 'https://github.com/TBD/Firestore.git', :tag => s.version.to_s }
- # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
- s.ios.deployment_target = '8.0'
- s.source_files = 'Source/**/*', 'Port/**/*', 'Protos/objc/**/*.[hm]', 'third_party/**/*.[mh]'
- s.requires_arc = 'Source/**/*', 'third_party/**/*.[mh]'
- s.exclude_files = 'Port/*test.cc', 'third_party/**/Tests/**'
- s.public_header_files = 'Source/Public/*.h'
- s.frameworks = 'MobileCoreServices'
- s.dependency 'gRPC-ProtoRPC'
- s.dependency 'leveldb-library'
- s.dependency 'Protobuf'
- s.dependency 'FirebaseCommunity/Core'
- s.dependency 'FirebaseCommunity/Auth'
- s.library = 'c++'
- s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
- '$(inherited) ' +
- 'GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 ',
- 'OTHER_CFLAGS' => '-DFIRFirestore_VERSION=' + s.version.to_s
- }
- end
|