Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since the new ADT preview version (version 21) , they have a new lint warning that tells me the next thing on the manifest file (in the application tag):

Should explicitly set android:allowBackup to true or false (it's true by default, and that can have some security implications for the application's data)

In the official website , they've written:

A couple of new checks: you must explicitly decide whether your app allows backups, and a label check. There's a new command line flag for setting the library path. Many improvements to the incremental lint analysis while editing.

What is this warning? What is the backup feature and how do I use it?

Also, why does the warning tells me it has security implications? What are the disadvantages and advantages of disabling this feature?


Edit: here's why there is a security warning (according to this website):

Caution: Because the cloud storage and transport service can differ from device to device, Android makes no guarantees about the security of your data while using backup. You should always be cautious about using backup to store sensitive data, such as usernames and passwords.

share|improve this question

5 Answers

For this lint warning, and for all other lint warnings, note that you can get a fuller explanation than just what is in the one line error message; you don't have to search the web for more info.

If you are using lint via Eclipse, either open the lint warnings view, where you can select the lint error and see a longer explanation, or invoke the quickfix (Ctrl-1) on the error line, and one of the suggestions is "Explain this issue", which will also pop up a fuller explanation. If you are not using Eclipse, you can generate an HTML report from lint (lint --html ) which includes full explanations next to the warnings, or you can ask lint to explain a particular issue. For example, the issue related to allowBackup has the id "AllowBackup" (shown at the end of the error message), so the fuller explanation is:

$ ./lint --show AllowBackup

AllowBackup

Summary: Ensure that allowBackup is explicitly set in the application's manifest

Priority: 3 / 10 Severity: Warning Category: Security

The allowBackup attribute determines if an application's data can be backed up and restored. It is documented at http://developer.android.com/reference/android/R.attr.html#allowBackup

By default, this flag is set to true. When this flag is set to true, application data can be backed up and restored by the user using adb backup and adb restore.

This may have security consequences for an application. adb backup allows users who have enabled USB debugging to copy application data off of the device. Once backed up, all application data can be read by the user. adb restore allows creation of application data from a source specified by the user. Following a restore, applications should not assume that the data, file permissions, and directory permissions were created by the application itself.

Setting allowBackup="false" opts an application out of both backup and restore.

To fix this warning, decide whether your application should support backup, and explicitly set android:allowBackup=(true|false)"

More information: http://developer.android.com/reference/android/R.attr.html#allowBackup

share|improve this answer
users usually don't even know what is adb , and if they do , they probably know how to root their device and get the data by themselves anyway , no ? – android developer Dec 10 '12 at 19:36
@Tor When you say "copy application data off of the device", do you mean copy from data/data/com.myapp or from sdcard? The former directory is protected and cannot be read unless the device is rooted. – Igor Ganapolsky Apr 1 at 12:53

This is not explicitly mentioned, but based on the following docs, I think it is implied that an app needs to declare and implement a BackupAgent in order for data backup to work, even in the case when allowBackup is set to true (which is the default value).

http://developer.android.com/reference/android/R.attr.html#allowBackup http://developer.android.com/reference/android/app/backup/BackupManager.html http://developer.android.com/guide/topics/data/backup.html

share|improve this answer
what if the app doesn't have anything related to the backupAgent? will android backup its data automatically nevertheless ? – android developer Feb 20 at 21:09

Add android:allowBackup="true" in AndroidManifest.xml under <application ... tag

share|improve this answer
2  
This doesn't explain in detail what it is really for... – Igor Ganapolsky Apr 1 at 12:54

Here is what backup in this sense really means:

Android's backup service allows you to copy your persistent application data to remote "cloud" storage, in order to provide a restore point for the application data and settings. If a user performs a factory reset or converts to a new Android-powered device, the system automatically restores your backup data when the application is re-installed. This way, your users don't need to reproduce their previous data or application settings.

~Taken from http://developer.android.com/guide/topics/data/backup.html

You can register for this backup service as a developer here: https://developer.android.com/google/backup/signup.html

The type of data that can be backed up are files, databases, sharedPreferences, cache, and lib. These are generally stored in your device's /data/data/[com.myapp] directory, which is read-protected and cannot be accessed unless you have root privileges.

share|improve this answer

It's just allowing Android to back the app data up. It's only available on ICS, and up.

I'm not sure about the security stuff though...

share|improve this answer
3  
what do you mean the app data ? does it include the sharedPreferences , databases , etc... ? what does it include ? do you have any more info about it ? maybe a link? – android developer Sep 28 '12 at 23:04
1  
do you know of any good link about it, so that i could investigate it further? – android developer Sep 29 '12 at 0:23
2  
1  
1:Your application can request a backup, and the user can manually do one. 2: It depends if you want to have it on, if your app is very simple, then you might not want to. If it has a lot of preference settings, you might want to. – lolzballs Sep 30 '12 at 12:41
1  
suppose the app will request a backup by itself , what will android do ? will it copy all of the sharedPreferences to google's servers ? or should the app have some code for handling what to backup ? – android developer Nov 23 '12 at 17:16
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.