a native ios client for gitbay

client ios swift

https://gitbay.org

gitbay/PrivacyInfo.xcprivacy

main
gitbay-ios/gitbay/PrivacyInfo.xcprivacy history · blame · raw

33 lines · 1042 bytes

 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	<!-- No tracking: the app talks only to the gitbay instance the user
 6	     names at sign-in, and to nothing else. -->
 7	<key>NSPrivacyTracking</key>
 8	<false/>
 9	<key>NSPrivacyTrackingDomains</key>
10	<array/>
11
12	<!-- Nothing is collected. The API token is held in the Keychain on
13	     the device and sent only to that instance; no analytics, no
14	     crash reporting, no third-party SDK. -->
15	<key>NSPrivacyCollectedDataTypes</key>
16	<array/>
17
18	<key>NSPrivacyAccessedAPITypes</key>
19	<array>
20		<dict>
21			<!-- SessionStore keeps which account is active across
22			     relaunches. App's own data, read and written by this
23			     app only. -->
24			<key>NSPrivacyAccessedAPIType</key>
25			<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
26			<key>NSPrivacyAccessedAPITypeReasons</key>
27			<array>
28				<string>CA92.1</string>
29			</array>
30		</dict>
31	</array>
32</dict>
33</plist>