Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit 11c9cca

Browse files
authored
Merge pull request #2 from microsoftgraph/vidadhee/cocoapods
Cocopods support
2 parents fb17ce2 + 1bd2381 commit 11c9cca

File tree

18 files changed

+114
-271
lines changed

18 files changed

+114
-271
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ xcuserdata/
3434
# you should judge for yourself, the pros and cons are mentioned at:
3535
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
3636
#
37-
# Pods/
37+
MSGraphMSALAuthProvider/Pods/
3838

3939
# Carthage
4040
#
4141
# Add this line if you want to avoid checking in source code from Carthage dependencies.
42-
# Carthage/Checkouts
42+
Carthage/Checkouts
4343

4444
Carthage/Build
4545

.gitmodules

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
[submodule "MSGraphMSALAuthProvider/msalIos"]
2-
path = MSGraphMSALAuthProvider/msalIos
3-
url = https://github.com/AzureAD/microsoft-authentication-library-for-objc
4-
[submodule "MSGraphMSALAuthProvider/msgraph-sdk-objc"]
5-
path = MSGraphMSALAuthProvider/msgraph-sdk-objc
6-
url = https://github.com/microsoftgraph/msgraph-sdk-objc.git
1+

Cartfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github "AzureAD/microsoft-authentication-library-for-objc" == 0.2.3
2+
github "microsoftgraph/msgraph-sdk-objc" == 0.1.2

Cartfile.resolved

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github "AzureAD/microsoft-authentication-library-for-objc" "0.2.3"
2+
github "microsoftgraph/msgraph-sdk-objc" "0.1.2"

MSGraphMSALAuthProvider.podspec

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
Pod::Spec.new do |s|
3+
4+
s.name = "MSGraphMSALAuthProvider"
5+
s.version = "0.1.1"
6+
s.summary = "Microsoft Graph Auth Provider for MSAL."
7+
8+
s.description = <<-DESC
9+
Integrate authentication in your apps using this provider to add the capability of communicating with MSGraphClientSDK.
10+
DESC
11+
12+
s.homepage = "http://graph.microsoft.io"
13+
s.license = { :type => "MIT", :file => "LICENSE" }
14+
s.author = 'Microsoft Graph'
15+
16+
17+
s.ios.deployment_target = "10.0"
18+
19+
s.source = { :git => "https://github.com/microsoftgraph/msgraph-sdk-objc-auth.git", :tag=> s.version }
20+
21+
s.source_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProvider/*.{h,m}"
22+
s.exclude_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProviderTests/*"
23+
s.public_header_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProvider/*.h"
24+
25+
s.dependency 'MSGraphClientSDK', '~> 0.1.2'
26+
s.dependency 'MSAL', '~> 0.2'
27+
end

MSGraphMSALAuthProvider.xcworkspace/contents.xcworkspacedata

-7
This file was deleted.

MSGraphMSALAuthProvider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

-8
This file was deleted.

MSGraphMSALAuthProvider.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings

-5
This file was deleted.

0 commit comments

Comments
 (0)