forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseDatabase.podspec
60 lines (53 loc) · 2.43 KB
/
FirebaseDatabase.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Pod::Spec.new do |s|
s.name = 'FirebaseDatabase'
s.version = '6.1.3'
s.summary = 'Firebase Open Source Libraries for iOS (plus community support for macOS and tvOS)'
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 => 'Database-' + s.version.to_s
}
s.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '10.0'
s.cocoapods_version = '>= 1.4.0'
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.22'
s.dependency 'FirebaseAuthInterop', '~> 1.0'
s.dependency 'FirebaseCore', '~> 6.0'
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'GCC_PREPROCESSOR_DEFINITIONS' =>
'FIRDatabase_VERSION=' + s.version.to_s
}
s.test_spec 'unit' do |unit_tests|
unit_tests.source_files = 'Example/Database/Tests/Unit/*.[mh]',
'Example/Database/Tests/Helpers/*.[mh]',
'Example/Database/Tests/third_party/*.[mh]',
'Example/Shared/FIRAuthInteropFake.[mh]',
'Example/Shared/FIRComponentTestUtilities.h'
unit_tests.resources = 'Example/Database/Tests/infoPlist.strings',
'Example/Database/Tests/syncPointSpec.json',
'Example/Database/App/GoogleService-Info.plist'
end
s.test_spec 'integration' do |int_tests|
int_tests.source_files = 'Example/Database/Tests/Integration/*.[mh]',
'Example/Database/Tests/Helpers/*.[mh]',
'Example/Shared/FIRAuthInteropFake.[mh]'
int_tests.resources = 'Example/Database/App/GoogleService-Info.plist'
end
end