Skip to content

Commit

Permalink
Fix "Multiple commands produce PrivacyInfo.xcprivacy" error (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta authored Jul 31, 2024
1 parent 866dad9 commit ff0b914
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions OktaOidc.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OktaOidc'
s.version = '3.11.6'
s.version = '3.11.7'
s.summary = 'SDK to easily integrate AppAuth with Okta'
s.description = <<-DESC
Integrate your native app with Okta using the AppAuth library.
Expand All @@ -21,7 +21,7 @@ Integrate your native app with Okta using the AppAuth library.
s.subspec 'Okta' do |okta|
okta.dependency 'OktaOidc/AppAuth'
okta.source_files = 'Sources/OktaOidc/**/*.{h,swift}'
okta.resources = 'Sources/OktaOidc/Common/Resources/**/*'
okta.resource_bundles = { 'OktaOidc' => 'Sources/OktaOidc/Common/Resources/**/*' }
okta.exclude_files = 'Sources/OktaOidc/Common/Exports.swift'
okta.ios.deployment_target = '11.0'
okta.osx.deployment_target = '10.14'
Expand Down
2 changes: 1 addition & 1 deletion Sources/AppAuth/OktaUserAgent.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ +(void)setUserAgentValue:(NSString*)value {
}

+(NSString*)userAgentVersion {
return @"3.11.6";
return @"3.11.7";
}

+(NSString*)userAgentHeaderKey {
Expand Down
8 changes: 4 additions & 4 deletions okta-oidc.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1800,7 +1800,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.11.6;
MARKETING_VERSION = 3.11.7;
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
PRODUCT_NAME = OktaOidc;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1830,7 +1830,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.11.6;
MARKETING_VERSION = 3.11.7;
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
PRODUCT_NAME = OktaOidc;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1978,7 +1978,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 3.11.6;
MARKETING_VERSION = 3.11.7;
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
PRODUCT_NAME = OktaOidc;
SDKROOT = macosx;
Expand All @@ -2005,7 +2005,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 3.11.6;
MARKETING_VERSION = 3.11.7;
PRODUCT_BUNDLE_IDENTIFIER = "com.okta.okta-oidc";
PRODUCT_NAME = OktaOidc;
SDKROOT = macosx;
Expand Down

0 comments on commit ff0b914

Please sign in to comment.