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

Commit cb141b1

Browse files
committed
Merge branch 'pr/3' into ForkSync_27Mar2024
# Conflicts: # Sources/AppAuth/iOS/OIDExternalUserAgentIOS.h # Sources/AppAuth/iOS/OIDExternalUserAgentIOS.m
2 parents 56823bf + 7e2c09c commit cb141b1

File tree

135 files changed

+860
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+860
-205
lines changed

AppAuth.podspec

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "AppAuth"
4-
s.version = "1.6.2"
4+
s.version = "1.7.3"
55
s.summary = "AppAuth for iOS and macOS is a client SDK for communicating with OAuth 2.0 and OpenID Connect providers."
66

77
s.description = <<-DESC
@@ -43,30 +43,33 @@ It follows the OAuth 2.0 for Native Apps best current practice
4343

4444
# Subspec for the core AppAuth library classes only, suitable for extensions.
4545
s.subspec 'Core' do |core|
46-
core.source_files = "Source/AppAuthCore.h", "Source/AppAuthCore/*.{h,m}"
46+
core.source_files = "Sources/AppAuthCore.h", "Sources/AppAuthCore/*.{h,m}"
47+
core.resource_bundles = {
48+
"AppAuthCore_Privacy" => ["Sources/AppAuthCore/Resources/PrivacyInfo.xcprivacy"]
49+
}
4750
end
4851

49-
# Subspec for the full AppAuth library, including platform-dependant external user agents.
52+
# Subspec for the full AppAuth library, including platform-dependent external user agents.
5053
s.subspec 'ExternalUserAgent' do |externalUserAgent|
5154
externalUserAgent.dependency 'AppAuth/Core'
5255

53-
externalUserAgent.source_files = "Source/AppAuth.h", "Source/AppAuth/*.{h,m}"
56+
externalUserAgent.source_files = "Sources/AppAuth.h", "Sources/AppAuth/*.{h,m}"
5457

5558
# iOS
56-
externalUserAgent.ios.source_files = "Source/AppAuth/iOS/**/*.{h,m}"
59+
externalUserAgent.ios.source_files = "Sources/AppAuth/iOS/**/*.{h,m}"
5760
externalUserAgent.ios.deployment_target = ios_deployment_target
5861
externalUserAgent.ios.frameworks = "SafariServices"
5962
externalUserAgent.ios.weak_frameworks = "AuthenticationServices"
6063

6164
# macOS
62-
externalUserAgent.osx.source_files = "Source/AppAuth/macOS/**/*.{h,m}"
65+
externalUserAgent.osx.source_files = "Sources/AppAuth/macOS/**/*.{h,m}"
6366
externalUserAgent.osx.deployment_target = osx_deployment_target
6467
externalUserAgent.osx.weak_frameworks = "AuthenticationServices"
6568
end
6669

67-
# Subspec for the full AppAuth library, including platform-dependant external user agents.
70+
# Subspec for the full AppAuth library, including platform-dependent external user agents.
6871
s.subspec 'TV' do |tv|
69-
tv.source_files = "Source/AppAuthTV.h", "Source/AppAuthTV/*.{h,m}"
72+
tv.source_files = "Sources/AppAuthTV.h", "Sources/AppAuthTV/*.{h,m}"
7073
tv.dependency 'AppAuth/Core'
7174
end
7275

AppAuth.xcodeproj/project.pbxproj

Lines changed: 53 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,12 @@
546546
60140F801DE4344200DA0DC3 /* OIDRegistrationResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 60140F7F1DE4344200DA0DC3 /* OIDRegistrationResponse.m */; };
547547
60140F831DE43BAF00DA0DC3 /* OIDRegistrationRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 60140F821DE43BAF00DA0DC3 /* OIDRegistrationRequestTests.m */; };
548548
60140F861DE43CC700DA0DC3 /* OIDRegistrationResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 60140F851DE43CC700DA0DC3 /* OIDRegistrationResponseTests.m */; };
549+
73F574342B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
550+
73F574352B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
551+
73F574362B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
552+
73F574372B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
553+
73F574382B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
554+
73F574392B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
549555
A5EEF29720D821120044F470 /* OIDTokenUtilitiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */; };
550556
A5EEF29820D8211A0044F470 /* OIDTokenUtilitiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */; };
551557
A5EEF29920D8211B0044F470 /* OIDTokenUtilitiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */; };
@@ -827,6 +833,7 @@
827833
60140F821DE43BAF00DA0DC3 /* OIDRegistrationRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OIDRegistrationRequestTests.m; sourceTree = "<group>"; };
828834
60140F841DE43C8C00DA0DC3 /* OIDRegistrationResponseTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OIDRegistrationResponseTests.h; sourceTree = "<group>"; };
829835
60140F851DE43CC700DA0DC3 /* OIDRegistrationResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OIDRegistrationResponseTests.m; sourceTree = "<group>"; };
836+
73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
830837
A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OIDTokenUtilitiesTests.m; sourceTree = "<group>"; };
831838
A6CEB1172007E384009D492A /* OIDEndSessionRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OIDEndSessionRequestTests.h; sourceTree = "<group>"; };
832839
A6CEB1182007E384009D492A /* OIDEndSessionRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OIDEndSessionRequestTests.m; sourceTree = "<group>"; };
@@ -993,6 +1000,7 @@
9931000
2D47AAD7249A86E30059B5A4 /* AppAuthTV */ = {
9941001
isa = PBXGroup;
9951002
children = (
1003+
7322C49B2BA20BFA00DF9B2F /* Resources */,
9961004
2D47AAD9249A87010059B5A4 /* OIDTVAuthorizationRequest.h */,
9971005
2D47AADD249A87010059B5A4 /* OIDTVAuthorizationRequest.m */,
9981006
2D47AADC249A87010059B5A4 /* OIDTVAuthorizationResponse.h */,
@@ -1050,7 +1058,7 @@
10501058
children = (
10511059
341742291C5D84D0000EF209 /* Frameworks */,
10521060
341741FB1C5D82D3000EF209 /* UnitTests */,
1053-
341741AE1C5D8243000EF209 /* Source */,
1061+
341741AE1C5D8243000EF209 /* Sources */,
10541062
340E737D1C5D819B0076B1F6 /* Products */,
10551063
);
10561064
indentWidth = 2;
@@ -1082,7 +1090,7 @@
10821090
name = Products;
10831091
sourceTree = "<group>";
10841092
};
1085-
341741AE1C5D8243000EF209 /* Source */ = {
1093+
341741AE1C5D8243000EF209 /* Sources */ = {
10861094
isa = PBXGroup;
10871095
children = (
10881096
348970992178F40600ABEED4 /* CoreFramework */,
@@ -1095,7 +1103,7 @@
10951103
3489709E21791B0C00ABEED4 /* AppAuthCore.h */,
10961104
2D47AADB249A87010059B5A4 /* AppAuthTV.h */,
10971105
);
1098-
path = Source;
1106+
path = Sources;
10991107
sourceTree = "<group>";
11001108
};
11011109
341741FB1C5D82D3000EF209 /* UnitTests */ = {
@@ -1176,9 +1184,32 @@
11761184
path = LoopbackHTTPServer;
11771185
sourceTree = "<group>";
11781186
};
1187+
7322C4992BA2095100DF9B2F /* Resources */ = {
1188+
isa = PBXGroup;
1189+
children = (
1190+
73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */,
1191+
);
1192+
path = Resources;
1193+
sourceTree = "<group>";
1194+
};
1195+
7322C49A2BA20BEF00DF9B2F /* Resources */ = {
1196+
isa = PBXGroup;
1197+
children = (
1198+
);
1199+
path = Resources;
1200+
sourceTree = "<group>";
1201+
};
1202+
7322C49B2BA20BFA00DF9B2F /* Resources */ = {
1203+
isa = PBXGroup;
1204+
children = (
1205+
);
1206+
path = Resources;
1207+
sourceTree = "<group>";
1208+
};
11791209
8A9B9D5E24561EC40055353E /* AppAuthCore */ = {
11801210
isa = PBXGroup;
11811211
children = (
1212+
7322C4992BA2095100DF9B2F /* Resources */,
11821213
341741B41C5D8243000EF209 /* OIDAuthorizationRequest.h */,
11831214
341741B51C5D8243000EF209 /* OIDAuthorizationRequest.m */,
11841215
341741B61C5D8243000EF209 /* OIDAuthorizationResponse.h */,
@@ -1240,6 +1271,7 @@
12401271
8A9B9D632456227D0055353E /* AppAuth */ = {
12411272
isa = PBXGroup;
12421273
children = (
1274+
7322C49A2BA20BEF00DF9B2F /* Resources */,
12431275
340DAE241D581FE700EC285B /* macOS */,
12441276
F6F60FAF1D2BFEF000325CB3 /* iOS */,
12451277
);
@@ -1937,6 +1969,7 @@
19371969
isa = PBXResourcesBuildPhase;
19381970
buildActionMask = 2147483647;
19391971
files = (
1972+
73F574392B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19401973
);
19411974
runOnlyForDeploymentPostprocessing = 0;
19421975
};
@@ -1965,13 +1998,15 @@
19651998
isa = PBXResourcesBuildPhase;
19661999
buildActionMask = 2147483647;
19672000
files = (
2001+
73F574382B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19682002
);
19692003
runOnlyForDeploymentPostprocessing = 0;
19702004
};
19712005
343AAA521E83463400F9D36E /* Resources */ = {
19722006
isa = PBXResourcesBuildPhase;
19732007
buildActionMask = 2147483647;
19742008
files = (
2009+
73F574342B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19752010
);
19762011
runOnlyForDeploymentPostprocessing = 0;
19772012
};
@@ -1986,13 +2021,15 @@
19862021
isa = PBXResourcesBuildPhase;
19872022
buildActionMask = 2147483647;
19882023
files = (
2024+
73F574352B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19892025
);
19902026
runOnlyForDeploymentPostprocessing = 0;
19912027
};
19922028
343AAAA41E83489A00F9D36E /* Resources */ = {
19932029
isa = PBXResourcesBuildPhase;
19942030
buildActionMask = 2147483647;
19952031
files = (
2032+
73F574362B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19962033
);
19972034
runOnlyForDeploymentPostprocessing = 0;
19982035
};
@@ -2007,6 +2044,7 @@
20072044
isa = PBXResourcesBuildPhase;
20082045
buildActionMask = 2147483647;
20092046
files = (
2047+
73F574372B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
20102048
);
20112049
runOnlyForDeploymentPostprocessing = 0;
20122050
};
@@ -2654,7 +2692,7 @@
26542692
"DEBUG=1",
26552693
"$(inherited)",
26562694
);
2657-
INFOPLIST_FILE = "$(SRCROOT)/Source/TVFramework/Info.plist";
2695+
INFOPLIST_FILE = Sources/TVFramework/Info.plist;
26582696
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
26592697
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
26602698
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
@@ -2686,7 +2724,7 @@
26862724
DYLIB_CURRENT_VERSION = 1;
26872725
DYLIB_INSTALL_NAME_BASE = "@rpath";
26882726
GCC_C_LANGUAGE_STANDARD = gnu11;
2689-
INFOPLIST_FILE = "$(SRCROOT)/Source/TVFramework/Info.plist";
2727+
INFOPLIST_FILE = Sources/TVFramework/Info.plist;
26902728
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
26912729
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
26922730
MTL_FAST_MATH = YES;
@@ -2998,7 +3036,7 @@
29983036
DYLIB_COMPATIBILITY_VERSION = 1;
29993037
DYLIB_CURRENT_VERSION = 1;
30003038
DYLIB_INSTALL_NAME_BASE = "@rpath";
3001-
INFOPLIST_FILE = Source/CoreFramework/Info.plist;
3039+
INFOPLIST_FILE = Sources/CoreFramework/Info.plist;
30023040
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
30033041
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
30043042
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -3024,7 +3062,7 @@
30243062
DYLIB_COMPATIBILITY_VERSION = 1;
30253063
DYLIB_CURRENT_VERSION = 1;
30263064
DYLIB_INSTALL_NAME_BASE = "@rpath";
3027-
INFOPLIST_FILE = Source/CoreFramework/Info.plist;
3065+
INFOPLIST_FILE = Sources/CoreFramework/Info.plist;
30283066
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
30293067
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
30303068
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -3049,7 +3087,7 @@
30493087
DYLIB_COMPATIBILITY_VERSION = 1;
30503088
DYLIB_CURRENT_VERSION = 1;
30513089
DYLIB_INSTALL_NAME_BASE = "@rpath";
3052-
INFOPLIST_FILE = Source/Framework/Info.plist;
3090+
INFOPLIST_FILE = Sources/Framework/Info.plist;
30533091
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
30543092
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
30553093
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -3074,7 +3112,7 @@
30743112
DYLIB_COMPATIBILITY_VERSION = 1;
30753113
DYLIB_CURRENT_VERSION = 1;
30763114
DYLIB_INSTALL_NAME_BASE = "@rpath";
3077-
INFOPLIST_FILE = Source/Framework/Info.plist;
3115+
INFOPLIST_FILE = Sources/Framework/Info.plist;
30783116
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
30793117
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
30803118
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -3128,7 +3166,7 @@
31283166
DYLIB_COMPATIBILITY_VERSION = 1;
31293167
DYLIB_CURRENT_VERSION = 1;
31303168
DYLIB_INSTALL_NAME_BASE = "@rpath";
3131-
INFOPLIST_FILE = Source/Framework/Info.plist;
3169+
INFOPLIST_FILE = Sources/Framework/Info.plist;
31323170
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
31333171
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
31343172
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.AppAuth-watchOS";
@@ -3154,7 +3192,7 @@
31543192
DYLIB_COMPATIBILITY_VERSION = 1;
31553193
DYLIB_CURRENT_VERSION = 1;
31563194
DYLIB_INSTALL_NAME_BASE = "@rpath";
3157-
INFOPLIST_FILE = Source/Framework/Info.plist;
3195+
INFOPLIST_FILE = Sources/Framework/Info.plist;
31583196
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
31593197
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
31603198
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.AppAuth-watchOS";
@@ -3179,7 +3217,7 @@
31793217
DYLIB_COMPATIBILITY_VERSION = 1;
31803218
DYLIB_CURRENT_VERSION = 1;
31813219
DYLIB_INSTALL_NAME_BASE = "@rpath";
3182-
INFOPLIST_FILE = Source/Framework/Info.plist;
3220+
INFOPLIST_FILE = Sources/Framework/Info.plist;
31833221
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
31843222
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
31853223
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.AppAuth-tvOS";
@@ -3204,7 +3242,7 @@
32043242
DYLIB_COMPATIBILITY_VERSION = 1;
32053243
DYLIB_CURRENT_VERSION = 1;
32063244
DYLIB_INSTALL_NAME_BASE = "@rpath";
3207-
INFOPLIST_FILE = Source/Framework/Info.plist;
3245+
INFOPLIST_FILE = Sources/Framework/Info.plist;
32083246
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
32093247
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
32103248
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.AppAuth-tvOS";
@@ -3261,7 +3299,7 @@
32613299
DYLIB_CURRENT_VERSION = 1;
32623300
DYLIB_INSTALL_NAME_BASE = "@rpath";
32633301
FRAMEWORK_VERSION = A;
3264-
INFOPLIST_FILE = Source/Framework/Info.plist;
3302+
INFOPLIST_FILE = Sources/Framework/Info.plist;
32653303
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
32663304
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
32673305
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.AppAuth-macOS";
@@ -3286,7 +3324,7 @@
32863324
DYLIB_CURRENT_VERSION = 1;
32873325
DYLIB_INSTALL_NAME_BASE = "@rpath";
32883326
FRAMEWORK_VERSION = A;
3289-
INFOPLIST_FILE = Source/Framework/Info.plist;
3327+
INFOPLIST_FILE = Sources/Framework/Info.plist;
32903328
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
32913329
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
32923330
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.AppAuth-macOS";

AppAuth.xcodeproj/xcshareddata/xcschemes/AppAuth-iOS.xcscheme

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<MacroExpansion>
31+
<BuildableReference
32+
BuildableIdentifier = "primary"
33+
BlueprintIdentifier = "340E737B1C5D819B0076B1F6"
34+
BuildableName = "libAppAuth-iOS.a"
35+
BlueprintName = "AppAuth-iOS"
36+
ReferencedContainer = "container:AppAuth.xcodeproj">
37+
</BuildableReference>
38+
</MacroExpansion>
3039
<Testables>
3140
<TestableReference
3241
skipped = "NO">
@@ -39,17 +48,6 @@
3948
</BuildableReference>
4049
</TestableReference>
4150
</Testables>
42-
<MacroExpansion>
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "340E737B1C5D819B0076B1F6"
46-
BuildableName = "libAppAuth-iOS.a"
47-
BlueprintName = "AppAuth-iOS"
48-
ReferencedContainer = "container:AppAuth.xcodeproj">
49-
</BuildableReference>
50-
</MacroExpansion>
51-
<AdditionalOptions>
52-
</AdditionalOptions>
5351
</TestAction>
5452
<LaunchAction
5553
buildConfiguration = "Debug"
@@ -70,8 +68,6 @@
7068
ReferencedContainer = "container:AppAuth.xcodeproj">
7169
</BuildableReference>
7270
</MacroExpansion>
73-
<AdditionalOptions>
74-
</AdditionalOptions>
7571
</LaunchAction>
7672
<ProfileAction
7773
buildConfiguration = "Release"

AppAuth.xcodeproj/xcshareddata/xcschemes/AppAuth-macOS.xcscheme

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<MacroExpansion>
31+
<BuildableReference
32+
BuildableIdentifier = "primary"
33+
BlueprintIdentifier = "340DAE4D1D58216A00EC285B"
34+
BuildableName = "libAppAuth-macOS.a"
35+
BlueprintName = "AppAuth-macOS"
36+
ReferencedContainer = "container:AppAuth.xcodeproj">
37+
</BuildableReference>
38+
</MacroExpansion>
3039
<Testables>
3140
<TestableReference
3241
skipped = "NO">
@@ -39,17 +48,6 @@
3948
</BuildableReference>
4049
</TestableReference>
4150
</Testables>
42-
<MacroExpansion>
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "340DAE4D1D58216A00EC285B"
46-
BuildableName = "libAppAuth-macOS.a"
47-
BlueprintName = "AppAuth-macOS"
48-
ReferencedContainer = "container:AppAuth.xcodeproj">
49-
</BuildableReference>
50-
</MacroExpansion>
51-
<AdditionalOptions>
52-
</AdditionalOptions>
5351
</TestAction>
5452
<LaunchAction
5553
buildConfiguration = "Debug"
@@ -70,8 +68,6 @@
7068
ReferencedContainer = "container:AppAuth.xcodeproj">
7169
</BuildableReference>
7270
</MacroExpansion>
73-
<AdditionalOptions>
74-
</AdditionalOptions>
7571
</LaunchAction>
7672
<ProfileAction
7773
buildConfiguration = "Release"

0 commit comments

Comments
 (0)