728x90
앱의 데이터가 자동으로 백업될 수 있다는 걸 몰랐다.
안드로이드 6.0부터는 AndroidManifest.xml 파일에서 application 요소의 android:allowBackup 속성을 자동으로 true로 설정된다.
이로 인해 사용자도 모르게 데이터가 구글 클라우드에 자동으로 백업된다.
<application
android:allowBackup="false"
android:icon="@drawable/icon"
android:fullBackupContent="false"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme.NoActionBar">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
728x90
'안드로이드 > 버그탈출' 카테고리의 다른 글
compileSdkVersion (0) | 2018.08.08 |
---|---|
Android Studio applicationId 변경 (0) | 2018.08.01 |
Error generating final archive: Debug certificate expired (0) | 2018.03.20 |
Android Studio 와 Eclipse 폰 OS 정보 파악 (0) | 2018.02.22 |
안드로이드 스튜디오 SDK22 변경시 (0) | 2017.09.15 |