From 650a067529cdf65cc9a9130c91511adfb4b64c98 Mon Sep 17 00:00:00 2001 From: Guillaume Jacquart Date: Thu, 24 Feb 2022 07:46:23 +0000 Subject: Access trackers list when QP disabled: #4591, #4596, #4601 --- .../e/privacycentralapp/extensions/AnyExtension.kt | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt (limited to 'app/src/main/java/foundation/e/privacycentralapp/extensions') diff --git a/app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt b/app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt new file mode 100644 index 0000000..a870d33 --- /dev/null +++ b/app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2022 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 . + */ + +package foundation.e.privacycentralapp.extensions + +import android.content.Context + +fun Any.toText(context: Context) = when (this) { + is Int -> context.getString(this) + is String -> this + else -> this.toString() +} -- cgit v1.2.3