We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bed5979 commit 8287222Copy full SHA for 8287222
Assets/Adjust/Test/CommandExecutor.cs
@@ -346,6 +346,16 @@ private void Config()
346
adjustConfig.allowIdfaReading = allowIdfaReading;
347
}
348
349
+ if (_command.ContainsParameter("allowSkAdNetworkHandling"))
350
+ {
351
+ var allowSkAdNetworkHandlingS = _command.GetFirstParameterValue("allowSkAdNetworkHandling");
352
+ var allowSkAdNetworkHandling = allowSkAdNetworkHandlingS.ToLower() == "true";
353
+ if (allowSkAdNetworkHandling == false)
354
355
+ adjustConfig.deactivateSKAdNetworkHandling();
356
+ }
357
358
+
359
if (_command.ContainsParameter("userAgent"))
360
{
361
var userAgent = _command.GetFirstParameterValue("userAgent");
0 commit comments