aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/foundation/e/privacycentralapp/common
diff options
context:
space:
mode:
authorAmit Kumar <amitkma@e.email>2021-05-12 17:55:06 +0530
committerAmit Kumar <amitkma@e.email>2021-05-12 17:55:06 +0530
commitf27cbbb44baf1cd437c74285155af2b5cbfb7953 (patch)
treebb0681345aec45bd3c63659caf917a43d6dfe8ab /app/src/main/java/foundation/e/privacycentralapp/common
parent574233624a9261a800fd5ddd234208f2c6994766 (diff)
downloadadvanced-privacy-f27cbbb44baf1cd437c74285155af2b5cbfb7953.tar.gz
Add DI container to inject dependencies in features and viewmodels
Other changes: - Safely parse latitude and longitude. - Hide marker when map state is set to disabled after being enabled.
Diffstat (limited to 'app/src/main/java/foundation/e/privacycentralapp/common')
-rw-r--r--app/src/main/java/foundation/e/privacycentralapp/common/Factory.kt23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/src/main/java/foundation/e/privacycentralapp/common/Factory.kt b/app/src/main/java/foundation/e/privacycentralapp/common/Factory.kt
new file mode 100644
index 0000000..4c7f436
--- /dev/null
+++ b/app/src/main/java/foundation/e/privacycentralapp/common/Factory.kt
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 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.privacycentralapp.common
+
+// Definition of a Factory interface with a function to create objects of a type
+interface Factory<T> {
+ fun create(): T
+}