This repository was archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRemixer.podspec
More file actions
33 lines (31 loc) · 1.43 KB
/
Copy pathRemixer.podspec
File metadata and controls
33 lines (31 loc) · 1.43 KB
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
Pod::Spec.new do |s|
s.name = 'Remixer'
s.version = '1.0.2'
s.author = 'Google Inc.'
s.summary = 'Remixer is a set of libraries and protocols to allow live adjustment of apps and prototypes during the development process.'
s.homepage = 'https://github.com/material-foundation/material-remixer-ios'
s.license = 'Apache 2.0'
s.source = { :git => 'https://github.com/material-foundation/material-remixer-ios.git', :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'src/core/**/*.{h,m}'
ss.exclude_files = 'src/core/remote/RMXFirebaseRemoteController.{h,m}'
ss.resource_bundles = {
'Remixer' => [ 'src/core/resources/Remixer.bundle/*' ]
}
end
s.subspec 'Firebase' do |ss|
ss.dependency 'Remixer/Core'
ss.dependency 'Firebase/Core', '~> 3.8'
ss.dependency 'Firebase/Database', '~> 3.1'
ss.source_files = 'src/core/remote/RMXFirebaseRemoteController.{h,m}'
ss.xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/FirebaseCore/Frameworks" "$(PODS_ROOT)/FirebaseAnalytics/Frameworks" "$(PODS_ROOT)/FirebaseDatabase/Frameworks"',
'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/Firebase/Core/Sources',
'GCC_PREPROCESSOR_DEFINITIONS' => 'REMIXER_CLOUD_FIREBASE=1'
}
ss.frameworks = ['FirebaseCore', 'FirebaseAnalytics', 'FirebaseDatabase']
end
end