Skip to content

Commit 346932e

Browse files
authored
Add privacy manifest (#239)
1 parent d7b2c1f commit 346932e

File tree

5 files changed

+24
-9
lines changed

5 files changed

+24
-9
lines changed

Examples/Example-iOS/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ target 'Example-iOSForPod' do
1010
# In production, you would use:
1111
# pod 'GTMAppAuth'
1212

13-
pod 'AppAuth', '~> 1.0'
14-
pod 'GTMSessionFetcher/Core', '>= 1.0', '< 4.0'
13+
pod 'AppAuth', '~> 1.7'
14+
pod 'GTMSessionFetcher/Core', '>= 3.3', '< 4.0'
1515
end

Examples/Example-macOS/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ target 'Example-macOSForPod' do
1010
# In production, you would use:
1111
# pod 'GTMAppAuth'
1212

13-
pod 'AppAuth', '~> 1.5'
14-
pod 'GTMSessionFetcher/Core', '>= 1.0', '< 4.0'
13+
pod 'AppAuth', '~> 1.7'
14+
pod 'GTMSessionFetcher/Core', '>= 3.3', '< 4.0'
1515
end

GTMAppAuth.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ requests with AppAuth.
3232
s.watchos.deployment_target = watchos_deployment_target
3333

3434
s.framework = 'Security'
35-
s.dependency 'GTMSessionFetcher/Core', '>= 2.1', '< 4.0'
36-
s.dependency 'AppAuth/Core', '~> 1.6'
35+
s.dependency 'GTMSessionFetcher/Core', '>= 3.3', '< 4.0'
36+
s.dependency 'AppAuth/Core', '~> 1.7'
3737

3838
s.test_spec 'unit' do |unit_tests|
3939
unit_tests.platforms = {

Package.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
// Copyright 2021 Google LLC
@@ -32,8 +32,8 @@ let package = Package(
3232
)
3333
],
3434
dependencies: [
35-
.package(url: "https://github.com/google/gtm-session-fetcher.git", "2.1.0" ..< "4.0.0"),
36-
.package(url: "https://github.com/openid/AppAuth-iOS.git", "1.6.0" ..< "2.0.0")
35+
.package(url: "https://github.com/google/gtm-session-fetcher.git", "3.3.0" ..< "4.0.0"),
36+
.package(url: "https://github.com/openid/AppAuth-iOS.git", "1.7.0" ..< "2.0.0")
3737
],
3838
targets: [
3939
.target(
@@ -43,6 +43,7 @@ let package = Package(
4343
.product(name: "AppAuthCore", package: "AppAuth-iOS")
4444
],
4545
path: "GTMAppAuth/Sources",
46+
resources: [.copy("../../PrivacyInfo.xcprivacy")],
4647
linkerSettings: [
4748
.linkedFramework("Security"),
4849
]

PrivacyInfo.xcprivacy

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyCollectedDataTypes</key>
6+
<array/>
7+
<key>NSPrivacyAccessedAPITypes</key>
8+
<array/>
9+
<key>NSPrivacyTrackingDomains</key>
10+
<array/>
11+
<key>NSPrivacyTracking</key>
12+
<false/>
13+
</dict>
14+
</plist>

0 commit comments

Comments
 (0)