From 55a08dfe6bb299ac74e69346c1ad6da51355c258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacek=20=C5=81yp?= Date: Thu, 19 Dec 2024 14:50:12 +0100 Subject: [PATCH] Add force old app delegate flag (#1141) Task/Issue URL: https://app.asana.com/0/414235014887631/1208832732122403/f iOS PR: [n/a](https://github.com/duckduckgo/iOS/pull/3727) macOS PR: n/a What kind of version bump will this require?: Major **Description**: Simple privacy config flag that will allow us to use old app delegate in case of any issues. --- .../PrivacyConfig/Features/PrivacyFeature.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift b/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift index dc95e2ad6..4bb99735b 100644 --- a/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift +++ b/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift @@ -65,6 +65,7 @@ public enum PrivacyFeature: String { case textZoom case adAttributionReporting case experimentTest + case forceOldAppDelegate } /// An abstraction to be implemented by any "subfeature" of a given `PrivacyConfiguration` feature.