Advanced Threat Protection
Available categories
Category
Description
Configuring categories
let config = sdkManager.getConfiguration()
// Enable categories
config.setAdvancedThreatProtectionCategories(categories: [
.malware,
.trackers,
])
// Disable ATP
config.setAdvancedThreatProtectionCategories(categories: [])
// Read active categories
let active = config.getAdvancedThreatProtectionCategories() val config = sdkManager.getConfiguration()
// Enable categories
config.setAdvancedThreatProtectionCategories(
listOf(
AdvancedThreatProtectionCategory.MALWARE,
AdvancedThreatProtectionCategory.TRACKERS,
)
)
// Disable ATP
config.setAdvancedThreatProtectionCategories(emptyList())
// Read active categories
val active = config.getAdvancedThreatProtectionCategories(Getting the DNS IP
DNS IP Only
Error Handling
Last updated