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 { android_app {
name: "LocalContactsBackup", name: "LocalContactsBackup",
srcs: [ 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: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'

View file

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

View file

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

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-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" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.calyxos.backup.contacts.test"> 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 package org.calyxos.backup.contacts
import android.app.backup.BackupAgent 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 package org.calyxos.backup.contacts
import android.content.ContentProviderOperation import android.content.ContentProviderOperation

View file

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-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" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="org.calyxos.backup.contacts" 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; package org.calyxos.backup.contacts;
import static android.Manifest.permission.READ_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; package org.calyxos.backup.contacts;
import android.app.backup.FullBackupDataOutput; 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; package org.calyxos.backup.contacts;
import android.content.BroadcastReceiver; 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; package org.calyxos.backup.contacts;
import android.content.ContentResolver; 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; package org.calyxos.backup.contacts;
import android.content.ContentResolver; import android.content.ContentResolver;

View file

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

View file

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