Skip to content

Commit ff0b914

Browse files
authoredJul 31, 2024
Fix "Multiple commands produce PrivacyInfo.xcprivacy" error (#364)
1 parent 866dad9 commit ff0b914

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎OktaOidc.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'OktaOidc'
3-
s.version = '3.11.6'
3+
s.version = '3.11.7'
44
s.summary = 'SDK to easily integrate AppAuth with Okta'
55
s.description = <<-DESC
66
Integrate your native app with Okta using the AppAuth library.
@@ -21,7 +21,7 @@ Integrate your native app with Okta using the AppAuth library.
2121
s.subspec 'Okta' do |okta|
2222
okta.dependency 'OktaOidc/AppAuth'
2323
okta.source_files = 'Sources/OktaOidc/**/*.{h,swift}'
24-
okta.resources = 'Sources/OktaOidc/Common/Resources/**/*'
24+
okta.resource_bundles = { 'OktaOidc' => 'Sources/OktaOidc/Common/Resources/**/*' }
2525
okta.exclude_files = 'Sources/OktaOidc/Common/Exports.swift'
2626
okta.ios.deployment_target = '11.0'
2727
okta.osx.deployment_target = '10.14'

‎Sources/AppAuth/OktaUserAgent.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ +(void)setUserAgentValue:(NSString*)value {
2222
}
2323

2424
+(NSString*)userAgentVersion {
25-
return @"3.11.6";
25+
return @"3.11.7";
2626
}
2727

2828
+(NSString*)userAgentHeaderKey {

‎okta-oidc.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1800,7 +1800,7 @@
18001800
"@executable_path/Frameworks",
18011801
"@loader_path/Frameworks",
18021802
);
1803-
MARKETING_VERSION = 3.11.6;
1803+
MARKETING_VERSION = 3.11.7;
18041804
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
18051805
PRODUCT_NAME = OktaOidc;
18061806
SKIP_INSTALL = YES;
@@ -1830,7 +1830,7 @@
18301830
"@executable_path/Frameworks",
18311831
"@loader_path/Frameworks",
18321832
);
1833-
MARKETING_VERSION = 3.11.6;
1833+
MARKETING_VERSION = 3.11.7;
18341834
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
18351835
PRODUCT_NAME = OktaOidc;
18361836
SKIP_INSTALL = YES;
@@ -1978,7 +1978,7 @@
19781978
"@loader_path/Frameworks",
19791979
);
19801980
MACOSX_DEPLOYMENT_TARGET = 10.14;
1981-
MARKETING_VERSION = 3.11.6;
1981+
MARKETING_VERSION = 3.11.7;
19821982
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
19831983
PRODUCT_NAME = OktaOidc;
19841984
SDKROOT = macosx;
@@ -2005,7 +2005,7 @@
20052005
"@loader_path/Frameworks",
20062006
);
20072007
MACOSX_DEPLOYMENT_TARGET = 10.14;
2008-
MARKETING_VERSION = 3.11.6;
2008+
MARKETING_VERSION = 3.11.7;
20092009
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
20102010
PRODUCT_NAME = OktaOidc;
20112011
SDKROOT = macosx;

0 commit comments

Comments
 (0)