contactsbackup: Add SPDX copyright headers

This commit is contained in:
Michael Bestas 2023-03-02 18:41:32 +02:00 committed by Chirayu Desai
parent efaa1316c8
commit 076bd71c1d
15 changed files with 70 additions and 0 deletions

View file

@ -1,3 +1,8 @@
//
// SPDX-FileCopyrightText: 2020 The Calyx Institute
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "LocalContactsBackup",
srcs: [

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!--
SPDX-FileCopyrightText: 2020 The Calyx Institute
SPDX-License-Identifier: Apache-2.0
-->
<exceptions>
<exception package="org.calyxos.backup.contacts">
<permission name="android.permission.READ_CONTACTS" fixed="true" />

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2022 The Calyx Institute
SPDX-License-Identifier: Apache-2.0
-->
<lint>
<issue id="MissingTranslation" severity="ignore" />
</lint>

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2020 The Calyx Institute
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.calyxos.backup.contacts.test">

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts
import android.app.backup.BackupAgent

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts
import android.content.ContentProviderOperation

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2020 The Calyx Institute
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.calyxos.backup.contacts"

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts;
import static android.Manifest.permission.READ_CONTACTS;

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts;
import android.app.backup.FullBackupDataOutput;

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts;
import android.content.BroadcastReceiver;

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts;
import android.content.ContentResolver;

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts;
import android.content.ContentResolver;

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2020 The Calyx Institute
SPDX-License-Identifier: Apache-2.0
-->
<resources>
<string name="app_label">Local Contacts Backup</string>
</resources>

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: 2020 The Calyx Institute
* SPDX-License-Identifier: Apache-2.0
*/
package org.calyxos.backup.contacts
import android.Manifest.permission.READ_CONTACTS