-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathARCoreLocation.podspec
More file actions
31 lines (20 loc) · 944 Bytes
/
Copy pathARCoreLocation.podspec
File metadata and controls
31 lines (20 loc) · 944 Bytes
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.platform = :ios
s.ios.deployment_target = '11.0'
s.name = "ARCoreLocation"
s.version = "0.1.10"
s.summary = "Place AR landmarks on real-world locations."
s.description = <<-DESC
ARCoreLocation is a lightweight iOS framework for displaying AR content
at real-world coordinates.
DESC
s.homepage = "https://github.com/FreshworksStudio/arcorelocation"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Skyler Smith" => "skyler@freshworks.io" }
s.source = { :git => "https://github.com/FreshworksStudio/arcorelocation.git",
:tag => "#{s.version}" }
s.source_files = "ARCoreLocation/**/*.{swift}"
#s.resources = "ARCoreLocation/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
s.frameworks = "UIKit", "ARKit", "CoreLocation", "GLKit"
s.swift_version = "5.0"
end