Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 198d9e7c authored by Aayush Gupta's avatar Aayush Gupta
Browse files

Apps: Add/Update copyright header in all the files



- Fix header formatting wherever required
- Add missing copyright header as well

Signed-off-by: Aayush Gupta's avatarAayush Gupta <theimpulson@e.email>
parent 52582a99
Loading
Loading
Loading
Loading
+14 −14
Original line number Original line Diff line number Diff line
/*
/*
    Copyright (C) 2019  e Foundation
 * Copyright (C) 2019-2021  E FOUNDATION

 *
    This program is free software: you can redistribute it and/or modify
 * This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 * it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
 * the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
 * (at your option) any later version.

 *
    This program is distributed in the hope that it will be useful,
 * This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 * GNU General Public License for more details.

 *
    You should have received a copy of the GNU General Public License
 * You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
 */


package foundation.e.apps
package foundation.e.apps
+17 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2019-2021  E FOUNDATION
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package foundation.e.apps;
package foundation.e.apps;


import android.content.ContentProvider;
import android.content.ContentProvider;
+17 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2019-2021  E FOUNDATION
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package foundation.e.apps.XAPK
package foundation.e.apps.XAPK


data class ApkAssetBean(
data class ApkAssetBean(
+17 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2019-2021  E FOUNDATION
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package foundation.e.apps.XAPK
package foundation.e.apps.XAPK


enum class ApkAssetType(val suffix: String) {
enum class ApkAssetType(val suffix: String) {
+17 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2019-2021  E FOUNDATION
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package foundation.e.apps.XAPK
package foundation.e.apps.XAPK


import android.annotation.SuppressLint
import android.annotation.SuppressLint
Loading