forked from icerockdev/moko-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoko-widgets-flat.podspec
22 lines (18 loc) · 1012 Bytes
/
moko-widgets-flat.podspec
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 |spec|
spec.name = 'moko-widgets-flat'
spec.version = '0.1.0'
spec.homepage = 'https://github.com/icerockdev/moko-widgets'
spec.source = { :git => "https://github.com/icerockdev/moko-widgets.git", :tag => "release/#{spec.version}" }
spec.authors = 'IceRock Development'
spec.license = { :type => 'Apache 2', :file => 'LICENSE.md' }
spec.summary = 'Swift additions to moko-widgets Kotlin/Native library'
spec.module_name = "mokoWidgetsFlat"
spec.source_files = "widgets-flat/src/iosMain/swift/**/*.{h,m,swift}"
spec.resources = "widgets-flat/src/iosMain/resources/**/*"
spec.dependency 'InputMask', '~> 5.0.0'
spec.ios.deployment_target = '11.0'
spec.swift_version = '5.0'
spec.pod_target_xcconfig = {
'VALID_ARCHS' => '$(ARCHS_STANDARD_64_BIT)'
}
end