Documentation

Go to Portal Website

Enforce Latest Configuration

PlanPlatformsMASVS
EnterpriseAndroid, iOSNot mapped

Overview

Enforce Latest Configuration requires the app to confirm its security policy is current before protected runtime controls are allowed to proceed. It is intended for apps where stale policy could create material risk, such as certificate pin updates, emergency control changes, fraud response changes, or regulated access requirements.

When enforcement is enabled and the latest policy cannot be verified, the app follows your configured response instead of continuing with an outdated policy.

When To Use It

Use this control when:

How It Works

At startup, the protected app contacts AppTego's policy service, verifies the response, compares it with the bundled policy, and applies the latest valid policy before enabling protected controls. If verification fails in enforce mode, the app uses the response you configured for this control.

Public documentation intentionally avoids publishing tenant-specific URLs, embedded key details, cryptographic material, or exact request formats. Those values are generated and managed by AppTego during build and deployment.

How to Enable the Control

Navigate to Device Settings from the AppTego portal, and expand the App Lifecycle section. Under this section you will find the Enforce Latest Configuration control. Click Enable to enable it for the next build or for it to be applied with a live push (if enabled).

API Configuration Example

{
  "enforceNewVersion": true,
  "getNewVersion": true,
  "configuration": [
    {
      "EnforceNew": {
        "action": "kill",
        "title": "Security Update Required",
        "message": "Unable to verify the latest security settings. Please check your connection and relaunch the app.",
        "buttons": ["Exit"],
        "actions": ["kill"],
        "protection": true
      }
    }
  ]
}
FieldPurpose
enforceNewVersionBlocks startup until the latest policy is verified.
getNewVersionAllows the app to check for policy updates.
EnforceNewConfigures the user-facing response when verification cannot complete.

Operating Modes

ModeBehavior
Enforce enabledThe app must verify current policy before continuing.
Update enabled, enforce disabledThe app starts with cached or bundled policy and refreshes in the background.
Updates disabledThe app uses only the policy packaged into the protected build.

Compatibility Notes