Skip to content

Commit

Permalink
Privacy Config: Update "featuresRequestHeader" configuration for vers…
Browse files Browse the repository at this point in the history
…ions 5.222.0 and 5.223.0 (#2602)

* Updated featuresRequestHeader. Renamed appTp to appTP. Added configurations for versions 52220000 and 52230000.

* Fixed appTP in FeatureLogged type.

* Changed the value for daysLogging from 10 to 28.
  • Loading branch information
anikiki authored Dec 20, 2024
1 parent 12bba48 commit f3ba941
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 23 additions & 1 deletion overrides/android-override.json
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,29 @@
"featuresLogged": {
"gpc": true,
"cpm": true,
"appTp": false,
"appTP": false,
"netP": false
}
},
{
"appVersion": 52220000,
"daysAfterBuild": 6,
"daysLogging": 28,
"featuresLogged": {
"gpc": false,
"cpm": false,
"appTP": true,
"netP": false
}
},
{
"appVersion": 52230000,
"daysAfterBuild": 6,
"daysLogging": 10,
"featuresLogged": {
"gpc": false,
"cpm": true,
"appTP": false,
"netP": false
}
}
Expand Down
2 changes: 1 addition & 1 deletion schema/features/android-browser-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type AppVersionConfig = {
type FeatureLogged = {
gpc: boolean;
cpm: boolean;
appTp: boolean;
appTP: boolean;
netP: boolean;
};

Expand Down

0 comments on commit f3ba941

Please sign in to comment.