Skip to content

Commit f0caf4c

Browse files
authored
Merge pull request DP-3T#87 from DP-3T/license-cleanup
update license header in all files
2 parents 3dddf13 + bf38943 commit f0caf4c

23 files changed

+138
-0
lines changed

calibration-app/app/src/debug/res/xml/network_security_config.xml

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Created by Ubique Innovation AG
4+
~ https://www.ubique.ch
5+
~ Copyright (c) 2020. All rights reserved.
6+
-->
7+
28
<network-security-config>
39
<base-config>
410
<trust-anchors>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Created by Ubique Innovation AG
4+
~ https://www.ubique.ch
5+
~ Copyright (c) 2020. All rights reserved.
6+
-->
7+
28
<network-security-config>
39
<!-- use default system config -->
410
</network-security-config>

dp3t-sdk/sdk/src/androidTest/java/org/dpppt/android/sdk/internal/JwtsTest.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal;
28

39
import androidx.test.ext.junit.runners.AndroidJUnit4;

dp3t-sdk/sdk/src/androidTest/java/org/dpppt/android/sdk/internal/crypto/ContactTests.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.crypto;
28

39
import android.content.Context;

dp3t-sdk/sdk/src/calibration/java/org/dpppt/android/sdk/DP3TCalibrationHelper.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk;
28

39
import android.content.Context;

dp3t-sdk/sdk/src/calibration/java/org/dpppt/android/sdk/internal/crypto/CryptoDatabaseHelper.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.crypto;
28

39
import android.content.ContentValues;

dp3t-sdk/sdk/src/calibration/java/org/dpppt/android/sdk/internal/database/DatabaseHelper.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.database;
28

39
import android.content.Context;

dp3t-sdk/sdk/src/calibration/java/org/dpppt/android/sdk/internal/logger/LogDatabaseHelper.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.logger;
28

39
import android.content.Context;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/InfectionStatus.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk;
28

39
public enum InfectionStatus {

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/backend/SignatureVerificationInterceptor.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.backend;
28

39
import androidx.annotation.NonNull;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/backend/ReportService.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.backend;
28

39
import org.dpppt.android.sdk.internal.backend.models.ExposeeRequest;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.backend;
28

39
public class ServerTimeOffsetException extends RuntimeException { }

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/backend/TimingVerificationInterceptor.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.backend;
28

39
import androidx.annotation.NonNull;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/crypto/ContactsFactory.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.crypto;
28

39
import android.content.Context;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/crypto/EphId.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.crypto;
28

39
import java.util.Arrays;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/database/models/ExposureDay.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.database.models;
28

39
import org.dpppt.android.sdk.internal.util.DayDate;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/gatt/BleCompat.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.gatt;
28

39
import android.bluetooth.BluetoothDevice;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/gatt/BluetoothServiceStatus.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.gatt;
28

39
import android.annotation.SuppressLint;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/gatt/BluetoothState.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.gatt;
28

39
public enum BluetoothState {

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/util/Json.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.util;
28

39
import androidx.core.util.Supplier;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/internal/util/LocationServiceUtil.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.internal.util;
28

39
import android.content.Context;

dp3t-sdk/sdk/src/main/java/org/dpppt/android/sdk/util/SignatureUtil.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Created by Ubique Innovation AG
3+
* https://www.ubique.ch
4+
* Copyright (c) 2020. All rights reserved.
5+
*/
6+
17
package org.dpppt.android.sdk.util;
28

39
import android.util.Base64;

dp3t-sdk/sdk/src/main/res/xml/dp3t_sdk_backup_rules.xml

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Created by Ubique Innovation AG
4+
~ https://www.ubique.ch
5+
~ Copyright (c) 2020. All rights reserved.
6+
-->
7+
28
<full-backup-content>
39
<exclude
410
domain="sharedpref"

0 commit comments

Comments
 (0)