-
Notifications
You must be signed in to change notification settings - Fork 66
/
LanguageManager-iOS.podspec
32 lines (25 loc) · 1.21 KB
/
LanguageManager-iOS.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
#
# Be sure to run `pod lib lint LanguageManger-iOS.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'LanguageManager-iOS'
s.version = '1.3.0'
s.summary = 'Language manager used to handle change app language'
s.description = <<-DESC
Language manager used to handle change app language without restart the app.
DESC
s.homepage = 'https://github.com/Abedalkareem/LanguageManager-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Abedalkareem' => '[email protected]' }
s.source = { :git => 'https://github.com/Abedalkareem/LanguageManager-iOS.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.social_media_url = 'https://twitter.com/AbedalkareemOmr'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '13.0'
s.source_files = 'LanguageManager-iOS/Classes/**/*'
s.resource_bundles = {"LanguageManager-iOS" => ["LanguageManager-iOS/PrivacyInfo.xcprivacy"]}
end