-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBGTasks.podspec
31 lines (25 loc) · 1.18 KB
/
BGTasks.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
Pod::Spec.new do |s|
s.name = 'BGTasks'
s.version = '1.0.8'
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = 'A wrapper over iOS provided BackgroundTasks framework to ensure smooth onboarding of usecases and handle all the complex functionalities of BackgroundTasks within it.'
s.homepage = 'https://github.com/PhonePe/BGTasks'
s.author = { 'Shridhara V' => '[email protected]' }
s.source = { :git => 'https://github.com/PhonePe/BGTasks.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
# s.osx.deployment_target = '10.12'
# s.watchos.deployment_target = '3.0'
# s.tvos.deployment_target = '10.0'
s.swift_version = '5.0'
s.frameworks = 'CoreData'
s.default_subspec = "Core"
s.subspec 'Core' do |core|
core.source_files = 'BGTasks/Core/Classes/**/*.{swift,h,m}'
core.resources = "BGTasks/Core/Assets/*.xcdatamodeld"
end
# s.test_spec 'BGFrameworkTests' do |test_spec|
# test_spec.source_files = 'Example/Tests/*.swift', 'Example/Tests/**/*.swift'
# test_spec.resources = "../../App/PhonePe/Assets.xcassets"
# test_spec.dependency 'Senpai'
# end
end