From 3e592526ec889887874efd0e46ba3cf72f2f6f98 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Tue, 21 Nov 2017 17:02:22 -0800 Subject: Buildable and interoperable source pods (#444) --- FirebaseDatabase.podspec | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 FirebaseDatabase.podspec (limited to 'FirebaseDatabase.podspec') diff --git a/FirebaseDatabase.podspec b/FirebaseDatabase.podspec new file mode 100644 index 0000000..bb7ccca --- /dev/null +++ b/FirebaseDatabase.podspec @@ -0,0 +1,39 @@ +Pod::Spec.new do |s| + s.name = 'FirebaseDatabase' + s.version = '4.0.4' + s.summary = 'Firebase Open Source Libraries for iOS.' + + s.description = <<-DESC +Simplify your iOS development, grow your user base, and monetize more effectively with Firebase. + 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/Database/" + s.source_files = base_dir + '**/*.[mh]', + base_dir + 'third_party/Wrap-leveldb/APLevelDB.mm', + base_dir + 'third_party/SocketRocket/fbase64.c' + s.public_header_files = base_dir + 'Public/*.h' + s.libraries = ['c++', 'icucore'] + s.frameworks = ['CFNetwork', 'Security', 'SystemConfiguration'] + s.dependency 'leveldb-library', '~> 1.18' + s.dependency 'FirebaseCore', '~> 4.0' + s.ios.dependency 'FirebaseAnalytics', '~> 4.0' + s.pod_target_xcconfig = { + 'GCC_PREPROCESSOR_DEFINITIONS' => + 'FIRDatabase_VERSION=' + s.version.to_s } +end -- cgit v1.2.3