File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -2092,6 +2092,18 @@ def __post_init__(self):
2092
2092
application_choice_names = (Application .FENIX .name ,),
2093
2093
)
2094
2094
2095
+
2096
+ ANDROID_LARGE_SCREEN_USERS_ONLY = NimbusTargetingConfig (
2097
+ name = "Large screen device users only" ,
2098
+ slug = "large_screen_device_users_only" ,
2099
+ description = "Targeting users who have large screen devices" ,
2100
+ targeting = "is_large_device" ,
2101
+ desktop_telemetry = "" ,
2102
+ sticky_required = False ,
2103
+ is_first_run_required = False ,
2104
+ application_choice_names = (Application .FENIX .name ,),
2105
+ )
2106
+
2095
2107
DEFAULT_PDF_IS_DIFFERENT_BROWSER = NimbusTargetingConfig (
2096
2108
name = "Default PDF handler is a different browser" ,
2097
2109
slug = "default_pdf_is_different_browser" ,
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ def test_check_mobile_targeting(
103
103
"has_enabled_tips_notifications" : True ,
104
104
"install_referrer_response_utm_source" : "test" ,
105
105
"number_of_app_launches" : 1 ,
106
+ "is_large_device" : True ,
106
107
}
107
108
)
108
109
client = sdk_client (load_app_context (context ))
You can’t perform that action at this time.
0 commit comments