forked from AndrewHartAR/ARKit-CoreLocation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathARCL.podspec
More file actions
14 lines (14 loc) · 752 Bytes
/
ARCL.podspec
File metadata and controls
14 lines (14 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
s.name = "ARCL"
s.version = "1.0"
s.summary = "ARKit + CoreLocation combines the high accuracy of AR with the scale of GPS data."
s.homepage = "https://github.com/ProjectDent/arkit-corelocation"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => "https://[email protected]/ProjectDent/ARKit-CoreLocation.git", :tag => s.version.to_s, :submodules => false }
s.platform = :ios, '11.0'
s.requires_arc = true
s.source_files = 'ARKit+CoreLocation/Source/*.swift'
s.frameworks = 'Foundation', 'UIKit', 'ARKit', 'CoreLocation', 'MapKit', 'SceneKit'
s.ios.deployment_target = '11.0'
end