更新后删除数据

问题描述 投票:-1回答:1

我已经为我的应用程序发布了一个新的更新,但是当我从Play商店升级它时,我看到应用程序数据已被删除。为什么?谢谢

我的清单:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
android updates auto-update
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.