aboutsummaryrefslogtreecommitdiffhomepage
path: root/FirebaseMessaging.podspec
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-11-21 17:02:22 -0800
committerGravatar GitHub <noreply@github.com>2017-11-21 17:02:22 -0800
commit3e592526ec889887874efd0e46ba3cf72f2f6f98 (patch)
treede8cc73df387cd982ca9bbf517f8ff1a9c41cce3 /FirebaseMessaging.podspec
parent32d6d6170fdca6f12a3fa51619081ad855815803 (diff)
Buildable and interoperable source pods (#444)
Diffstat (limited to 'FirebaseMessaging.podspec')
-rw-r--r--FirebaseMessaging.podspec46
1 files changed, 46 insertions, 0 deletions
diff --git a/FirebaseMessaging.podspec b/FirebaseMessaging.podspec
new file mode 100644
index 0000000..88cb310
--- /dev/null
+++ b/FirebaseMessaging.podspec
@@ -0,0 +1,46 @@
+Pod::Spec.new do |s|
+ s.name = 'FirebaseMessaging'
+ s.version = '2.0.6'
+ s.summary = 'Firebase Messaging for iOS'
+
+ s.description = <<-DESC
+Firebase Messaging for iOS is a service that allows you to send data from your server to your users'
+iOS device, and also to receive messages from devices on the same connection. The service handles
+all aspects of queueing of messages and delivery to the target iOS application running on the target
+device, and it is completely free.
+ DESC
+
+ s.homepage = 'https://firebase.google.com'
+ s.license = { :type => 'Apache', :file => 'LICENSE' }
+ s.authors = 'Google, Inc.'
+
+ s.source = {
+ :git => 'https://github.com/firebase/firebase-ios-sdk.git',
+ :tag => s.version.to_s
+ }
+ s.social_media_url = 'https://twitter.com/Firebase'
+ s.ios.deployment_target = '7.0'
+ s.osx.deployment_target = '10.10'
+
+ s.cocoapods_version = '>= 1.4.0.beta.2'
+ s.static_framework = true
+ s.prefix_header_file = false
+
+ base_dir = "Firebase/Messaging/"
+ s.source_files = base_dir + '**/*.[mh]'
+ s.requires_arc = base_dir + '*.m'
+ s.public_header_files = base_dir + 'Public/*.h'
+ s.library = 'sqlite3'
+ s.pod_target_xcconfig = {
+ 'GCC_PREPROCESSOR_DEFINITIONS' =>
+ 'GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 ' +
+ 'FIRMessaging_LIB_VERSION=' + String(s.version)
+ }
+ s.framework = 'AddressBook'
+ s.framework = 'SystemConfiguration'
+ s.dependency 'FirebaseCore', '~> 4.0'
+ s.ios.dependency 'FirebaseAnalytics', '~> 4.0'
+ s.dependency 'FirebaseInstanceID', '~> 2.0'
+ s.dependency 'GoogleToolboxForMac/Logger', '~> 2.1'
+ s.dependency 'Protobuf', '~> 3.1'
+end