-
Notifications
You must be signed in to change notification settings - Fork 0
/
RNBackgroundGeolocation.podspec
26 lines (23 loc) · 1.12 KB
/
RNBackgroundGeolocation.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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'RNBackgroundGeolocation'
s.version = package['version']
s.summary = package['description']
s.description = <<-DESC
Cross-platform background geolocation module for React Native with
battery-saving circular stationary-region monitoring and stop detection.
DESC
s.homepage = package['homepage']
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/transistorsoft/react-native-background-geolocation-android.git', :tag => s.version }
s.platform = :ios, '8.0'
s.dependency 'React'
s.static_framework = true
s.preserve_paths = 'docs', 'CHANGELOG.md', 'LICENSE', 'package.json', 'RNBackgroundGeolocation.js'
s.dependency 'CocoaLumberjack', '~> 3.5.1'
s.source_files = 'ios/RNBackgroundGeolocation/*.{h,m}'
s.libraries = 'sqlite3', 'z'
s.vendored_frameworks = 'ios/RNBackgroundGeolocation/TSLocationManager.framework'
end