-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathLokalise.podspec
32 lines (22 loc) · 1.27 KB
/
Lokalise.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
Pod::Spec.new do |s|
s.name = "Lokalise"
s.version = "1.0.2"
s.summary = "Lokalise framework for OTA localization for iOS."
s.description = <<-DESC.gsub(/^ +\|/,'')
|No need to resubmit your app for review to update strings or translations anymore
|
| * Over-the-air (OTA) localization
| * Change application language – select any language that is supported by project local localization.
| * Test localizations - create pre-release OTA localization bundles for your application. No need to recompile sources. Once the bundles are generated (at Lokalise Download page), see project settings to control versions and pre-release status.
DESC
s.homepage = "https://lokalise.com"
s.license = { :type => "Custom", :file => 'LICENSE.md' }
s.author = { "Fedya Levkin" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = "12.0"
s.source = {:git => "https://github.com/lokalise/lokalise-ios-framework.git", :tag => s.version}
s.ios.vendored_frameworks = "Lokalise.xcframework"
s.frameworks = 'Foundation'
s.libraries = 'c++', 'z'
s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(inherited)" }
end