Documentation

Go to Portal Website

App Cloning Detection

PlanPlatformsMASVS
TeamAndroidMASVS-RESILIENCE-1

Overview

App Cloning Detection identifies when an Android app appears to be duplicated, isolated, or launched through a cloning feature rather than running as the primary installed application. Cloning can undermine account separation, device binding, fraud controls, and enterprise device-management assumptions.

When cloning is detected, AppTego applies your configured response. High-risk apps often block cloned environments, while consumer apps may begin with telemetry to understand legitimate usage.

When To Use It

Use this control when your app needs to protect against:

How It Works

The protected app evaluates Android environment signals associated with duplicated app instances, virtualized storage, manufacturer cloning features, and third-party cloning tools. AppTego does not publish the exact package lists, path checks, signatures, or scoring logic because those details are part of the protection model and change as cloning tools evolve.

The control is designed to account for legitimate enterprise work-profile usage where possible, but any cloning policy should be tested with the device-management products your users rely on.

How to Enable the Control

Navigate to Detection & Response from the AppTego portal, and expand the Environment Detection section. Under this section you will find the App Cloning Detection control. Click Enable Configuration, choose the response action, and save the configuration for the next build or for it to be applied with a live push (if enabled).

API Configuration Example

{
  "AppCloningDetectionResponse": {
    "detection": true,
    "action": "close",
    "title": "App Cloning Detected",
    "message": "This app cannot run in cloned or duplicated environments.",
    "buttons": ["Exit"],
    "actions": ["close"],
    "redirects": [""]
  }
}
FieldPurpose
detectionEnables or disables app cloning detection.
actionSelects the response style, such as alert, close, log, or warn.
title / messageUser-facing text shown when a response is displayed.
buttons / actions / redirectsDefines the available response buttons and their outcomes.

Compatibility Notes