Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
PhaseWarp's avatar
PhaseWarp
Honored Guest
3 years ago

Help with Manifest

Error: "Application allows backup of private data"

 

Changed the manifest to use allowBackup as false yet it still does not work!

code: 

<?xml version="1.0" encoding="utf-8"?>
    package="com.unity3d.player"
    <application android:allowBackup="False">
        <activity android:name="com.unity3d.player.UnityPlayerActivity"
                  android:theme="@style/UnityThemeSelector">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
        </activity>
    </application>
</manifest>