> For the complete documentation index, see [llms.txt](/llms.txt).

# Migration guide from v7.1.1 to v7.1.2 for Embedded Wallets Android SDK

## Overview[​](#overview "Direct link to Overview")

This migration guide provides steps for upgrading from version 7.1.1(v7.1.1) to version 7.1.2(v7.1.2) of the Embedded Wallets Android SDK. The guide outlines the breaking changes in the AndroidManifest file.

## Changes in detail[​](#changes-in-detail "Direct link to Changes in detail")

### AndroidManifest changes[​](#androidmanifest-changes "Direct link to AndroidManifest changes")

From version **7.1.2**, please make sure to set `android:allowBackup` to `false`, and add `tools:replace="android:fullBackupContent"` in your `AndroidManifest.xml` file.

```
<application
        android:allowBackup="false"
        tools:replace="android:fullBackupContent"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher">
</application>

```
