Warning, /network/kdeconnect-android/src/org/kde/kdeconnect/UserInterface/About/ApplicationAboutData.kt is written in an unsupported language. File is not indexed.
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Maxim Leshchenko <cnmaks90@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 0007 package org.kde.kdeconnect.UserInterface.About 0008 0009 import android.content.Context 0010 import org.kde.kdeconnect_tp.BuildConfig 0011 import org.kde.kdeconnect_tp.R 0012 0013 /** 0014 * Add authors and credits here 0015 */ 0016 fun getApplicationAboutData(context: Context): AboutData { 0017 val aboutData = AboutData(context.getString(R.string.kde_connect), R.drawable.icon, BuildConfig.VERSION_NAME, 0018 context.getString(R.string.report_bug_url), context.getString(R.string.website_url), context.getString(R.string.source_code_url), context.getString(R.string.donate_url), 0019 R.string.everyone_else) 0020 0021 aboutData.authors += AboutPerson("Albert Vaca Cintora", R.string.maintainer_and_developer, "albertvaka+kde@gmail.com") 0022 aboutData.authors += AboutPerson("Aleix Pol", R.string.developer, "aleixpol@kde.org") 0023 aboutData.authors += AboutPerson("Inoki Shaw", R.string.apple_support, "veyx.shaw@gmail.com") 0024 aboutData.authors += AboutPerson("Matthijs Tijink", R.string.developer, "matthijstijink@gmail.com") 0025 aboutData.authors += AboutPerson("Nicolas Fella", R.string.developer, "nicolas.fella@gmx.de") 0026 aboutData.authors += AboutPerson("Philip Cohn-Cort", R.string.developer, "cliabhach@gmail.com") 0027 aboutData.authors += AboutPerson("Piyush Aggarwal", R.string.developer, "piyushaggarwal002@gmail.com") 0028 aboutData.authors += AboutPerson("Simon Redman", R.string.developer, "simon@ergotech.com") 0029 aboutData.authors += AboutPerson("Erik Duisters", R.string.developer, "e.duisters1@gmail.com") 0030 aboutData.authors += AboutPerson("Isira Seneviratne", R.string.developer, "isirasen96@gmail.com") 0031 aboutData.authors += AboutPerson("Vineet Garg", R.string.developer, "grg.vineet@gmail.com") 0032 aboutData.authors += AboutPerson("Anjani Kumar", R.string.bug_fixes_and_general_improvements, "anjanik012@gmail.com") 0033 aboutData.authors += AboutPerson("Samoilenko Yuri", R.string.samoilenko_yuri_task, "kinnalru@gmail.com") 0034 aboutData.authors += AboutPerson("Aniket Kumar", R.string.aniket_kumar_task, "anikketkumar786@gmail.com") 0035 aboutData.authors += AboutPerson("Àlex Fiestas", R.string.alex_fiestas_task, "afiestas@kde.org") 0036 aboutData.authors += AboutPerson("Daniel Tang", R.string.bug_fixes_and_general_improvements, "danielzgtg.opensource@gmail.com") 0037 aboutData.authors += AboutPerson("Maxim Leshchenko", R.string.maxim_leshchenko_task, "cnmaks90@gmail.com") 0038 aboutData.authors += AboutPerson("Holger Kaelberer", R.string.holger_kaelberer_task, "holger.k@elberer.de") 0039 aboutData.authors += AboutPerson("Saikrishna Arcot", R.string.saikrishna_arcot_task, "saiarcot895@gmail.com") 0040 0041 // Have you made some contributions and think your name should be here? Open a MR to add yourself to the list :) 0042 0043 return aboutData 0044 }