-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathMotionOrientation.podspec
More file actions
22 lines (17 loc) · 881 Bytes
/
MotionOrientation.podspec
File metadata and controls
22 lines (17 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'MotionOrientation'
s.version = '1.0.0'
s.summary = 'Lightweight library for detecting device orientation changes via CoreMotion.'
s.description = <<-DESC
MotionOrientation notifies device orientation changes using CoreMotion, even when UI orientation is locked.
DESC
s.homepage = 'https://github.com/tastyone/MotionOrientation'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'Sangwon Park' => 'tastyone@gmail.com' }
s.source = { :git => 'https://github.com/tastyone/MotionOrientation.git', :tag => s.version }
s.platform = :ios, '11.0'
s.source_files = 'MotionOrientation.{h,m}'
s.public_header_files = 'MotionOrientation.h'
s.frameworks = 'CoreMotion'
s.requires_arc = true
end