This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathKinEcosystem.podspec
34 lines (29 loc) · 1.64 KB
/
KinEcosystem.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
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'KinEcosystem'
s.version = '1.2.8'
s.summary = 'Kin Ecosystem mobile sdk for iOS'
s.description = <<-DESC
Kin ecosystem mobile sdk for iOS
DESC
s.homepage = 'https://kinecosystem.org'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kin' => '[email protected]' }
s.source = { :git => 'https://github.com/kinfoundation/kin-ecosystem-ios-sdk.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.resource_bundles = { "kinFonts" => ["KinEcosystem/KinEcosystem/fonts/*.otf"] }
s.resource_bundles = { "kinLocalization" => ["KinEcosystem/KinEcosystem/*.lproj/*.strings"] }
s.resource_bundles = { "KinEcosystem" => ['KinEcosystem/KinEcosystem/**/*.{xcassets,xcdatamodeld,storyboard,xib,png,pdf,jpg,json,strings,otf,ttf}',"KinEcosystem/KinEcosystem/*.lproj/*.strings"] }
s.source_files = 'KinEcosystem/KinEcosystem/**/*.{h,m,swift}'
s.resources = 'KinEcosystem/KinEcosystem/**/*.{xcassets,xcdatamodeld,storyboard,xib,png,pdf,jpg,json,strings,otf,ttf}'
s.swift_version = '4.2'
s.dependency 'KinMigrationModule', '0.1.3'
s.dependency 'KinAppreciationModuleOptionsMenu', '0.0.4'
s.app_spec 'SampleApp' do |as|
root = 'KinEcosystemSampleApp/EcosystemSampleApp'
as.pod_target_xcconfig = { 'INFOPLIST_FILE' => '${PODS_TARGET_SRCROOT}/'+root+'/Info.plist' }
as.source_files = [root+'/**/*.{swift}', root+'/defaultConfig.plist']
as.resources = root+'/**/*.{storyboard,xcassets}'
as.dependency 'JWT', '3.0.0-beta.11'
as.dependency 'HockeySDK'
end
end