The Decentralised Privacy-Preserving Proximity Tracing (DP-3T) project is an open protocol for COVID-19 proximity tracing using Bluetooth Low Energy functionality on mobile devices that ensures personal data and computation stays entirely on an individual's phone. It was produced by a core team of over 25 scientists and academic researchers from across Europe. It has also been scrutinized and improved by the wider community.
DP-3T is a free-standing effort started at EPFL and ETHZ that produced this protocol and that is implementing it in an open-sourced app and server.
This is the first implementation of the DP-3T protocol using the Exposure Notification Framework of Apple/Google. Only approved government public health authorities can access the APIs. Therefore, using this SDK will result in an API error unless you were granted the com.apple.developer.exposure-notification
entitlement by apple. Therefore the minimum deployment target is iOS 13.5.
Our prestandard solution that is not using the Apple/Google framework can be found under the tag prestandard.
- Android SDK & Calibration app: dp3t-sdk-android
- iOS SDK & Calibration app: dp3t-sdk-ios
- Android Demo App: dp3t-app-android
- iOS Demo App: dp3t-app-ios
- Backend SDK: dp3t-sdk-backend
The DP3T-SDK for iOS contains alpha-quality code only and is not yet complete. It has not yet been reviewed or audited for security and compatibility. We are both continuing the development and have started a security review. This project is truly open-source and we welcome any feedback on the code regarding both the implementation and security aspects. This repository contains the open prototype SDK, so please focus your feedback for this repository on implementation issues.
The full set of documents for DP3T is at https://github.com/DP-3T/documents. Please refer to the technical documents and whitepapers for a description of the implementation.
A central discovery service is hosted on Github. This server provides the necessary information for the SDK to initialize itself. After the SDK loads the base url for its own backend, it will load the infected list from there, as well as post if a user is infected. This will also allow apps to fetch lists from other backend systems participating in this scheme and can handle roaming of users.
Included in this repository is a Calibration App that can run, debug and test the SDK directly without implementing it in a new app first. It collects additional data and stores it locally into a database to allow for tests with phones from different vendors. Various parameters of the SDK are exposed and can be changed at runtime. Additionally it provides an overview of how to use the SDK.
Name | Description | Function Name |
---|---|---|
init | Initializes the SDK and configures it | initialize(applicationDescriptor:urlSession:backgroundHandler) |
Name | Description | Function Name |
---|---|---|
startTracing | Starts Bluetooth tracing | func startTracing(completionHandler: )throws |
stopTracing | Stops Bluetooth tracing | func stopTracing(completionHandler:) |
sync | Pro-actively triggers sync with backend to refresh exposed list | func sync(callback:) |
status | Returns a TracingState-Object describing the current state. This contains: - numberOfHandshakes : Int - trackingState : TrackingState - lastSync : Date - infectionStatus :InfectionStatus - backgroundRefreshState :UIBackgroundRefreshStatus |
func status(callback:) |
iWasExposed | This method must be called upon positive test. | func iWasExposed(onset:authentication:isFakeRequest:callback:) |
reset | Removes all SDK related data (key and database) and de-initializes SDK | func reset() throws |
DP3T-SDK is available through Swift Package Manager
- Add the following to your
Package.swift
file:
dependencies: [
.package(url: "https://github.com/DP-3T/dp3t-sdk-ios.git", .branch("develop"))
]
DP3T-SDK is available through Cocoapods
- Add the following to your
Podfile
:
pod 'DP3TSDK', => '0.4.0'
This version points to the HEAD of the develop
branch and will always fetch the latest development status. Future releases will be made available using semantic versioning to ensure stability for depending projects.
In your AppDelegate in the didFinishLaunchingWithOptions
function you have to initialize the SDK.
let url = URL(string: "https://example.com/your/api/")!
try! DP3TTracing.initialize(with: .init(appId: "com.example.your.app",
bucketBaseUrl: url,
reportBaseUrl: url))
The SDK accepts a URLSession
as an optional argument to the initializer. This can be used to enable certificate pinning. If no session is provided URLSession.shared
will be used.
To start and stop tracing use
try DP3TTracing.startTracing()
DP3TTracing.stopTracing()
Make sure that the app includes in the Info.plist
the bluetooth keys NSBluetoothAlwaysUsageDescription
and NSBluetoothPeripheralUsageDescription
and that the user has granted the app permission to use the Bluetooth periferals. Also the app as to support BackgroundMode
capability for bluetooth-central
and bluetooth-peripheral
.
Info.plist
sample:
<key>UIBackgroundModes</key>
<array>
<string>bluetooth-central</string>
<string>bluetooth-peripheral</string>
</array>
<key>NSBluetoothAlwaysUsageDescription</key>
<string>User facing text justifying bluetooth usage</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>User facing text justifying bluetooth usage</string>
DP3TTracing.status(callback: (Result<TracingState, DP3TTracingErrors>) -> Void)
The TracingState
object contains all information regarding the current tracing status.
To receive callbacks and notifications when the state changes, you should assign a delegate object conforming to DP3TTracingDelegate
:
DP3TTracing.delegate = yourDelegateObject // weak retained by the SDK
// Delegate method
func DP3TTracingStateChanged(_ state: TracingState) {
}
The SDK will call your delegate on every state change, this includes: Handshake detection, start/stop of tracing, change in exposure, errors...
DP3TTracing.iWasExposed(onset: Date(), authentication: .none) { result in
// Handle result here
}
The SDK does not automatically sync with the backend for new exposed users. The app is responsible for fetching the new exposed users as it sees fit (periodically or via user input):
DP3TTracing.sync() { result in
// Handle result here
}
The SDK supports iOS 13 Background tasks. To enable them the app has to support the Background process
capability and include org.dpppt.exposure-notification
in the BGTaskSchedulerPermittedIdentifiers
Info.plist
property.
Info.plist
sample:
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string>org.dpppt.exposure-notification</string>
</array>
<key>UIBackgroundModes</key>
<array>
<string>processing</string>
</array>
This project is licensed under the terms of the MPL 2 license. See the LICENSE file.