<?xml version="1.0" encoding="utf-8"?>
<!--
    Android 12+ (API 31) stopped letting android:allowBackup decide these on its own, so the
    same refusal is spelled out here for both transports.

    Nothing is eligible. The DataStore holds the API access and refresh tokens; a cloud backup
    would place a 90-day refresh token on Google's servers and restore it onto another handset,
    and a device-to-device transfer would carry the signed-in session to a phone the user may no
    longer control. Losing the local session on a restore costs one sign-in.
-->
<data-extraction-rules>
    <cloud-backup>
        <exclude domain="root" />
        <exclude domain="file" />
        <exclude domain="database" />
        <exclude domain="sharedpref" />
        <exclude domain="external" />
    </cloud-backup>

    <device-transfer>
        <exclude domain="root" />
        <exclude domain="file" />
        <exclude domain="database" />
        <exclude domain="sharedpref" />
        <exclude domain="external" />
    </device-transfer>
</data-extraction-rules>
