-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdalLib.podspec
33 lines (31 loc) · 1.57 KB
/
AdalLib.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
#
# Be sure to run `pod spec lint AdalLib.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "AdalLib"
s.version = "1.2.11"
s.summary = "The ADAL SDK for iOS gives you the ability to add Azure Identity authentication to your application"
s.description = <<-DESC
The Azure Identity Library for Objective C. This library gives you the ability to add support for Work Accounts to your iOS and OS X applications with just a few lines of additional code. This SDK gives your application the full functionality of Microsoft Azure AD, including industry standard protocol support for OAuth2, Web API integration with user level consent, and two factor authentication support.
DESC
s.homepage = "https://github.com/duydv9x/ADALIOS"
s.license = {
:type => "Apache License, Version 2.0",
:file => "LICENSE.txt"
}
s.authors = { "Microsoft" => "nugetaad@microsoft.com" }
s.social_media_url = "https://twitter.com/azuread"
s.platform = :ios, "11.0"
s.source = {
:git => "https://github.com/duydv9x/ADALIOS.git",
:tag => s.version.to_s
}
s.source_files = "ADALiOS/ADALiOS/**/*.{h,m}"
s.resources = "ADALiOS/ADALiOS/*.storyboard"
s.preserve_paths = "ADALiOS/ADALiOS/**/*.{h,m}"
s.requires_arc = true
end