What is “android:allowBackup”?

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 tell me it has security implications? What are the disadvantages and advantages of disabling this feature?


There are two concepts of backup for the manifest:

  • “android:allowBackup” allows to backup and restore via adb, as shown here:

Whether to allow the application to participate in the backup and
restore infrastructure. If this attribute is set to false, no backup
or restore of the application will ever be performed, even by a
full-system backup that would otherwise cause all application data to
be saved via adb. The default value of this attribute is true.

This is considered a security issue because people could backup your app via ADB and then get private data of your app into their PC.

However, I think it’s not that of a problem, since most users don’t know what adb is, and if they do, they will also know how to root the device. ADB functions would only work if the device has the debugging feature enabled, and this needs the user to enable it.

So, only users that connect their devices to the PC and enable the debugging feature would be affected. If they have a malicious app on their PC that uses the ADB tools, this could be problematic since the app could read the private storage data.

I think Google should just add a feature that is disabled by default, in the developer category, to allow backup&restore of apps via ADB.

  • “android:backupAgent” allows to use the backup and restore feature of the cloud, as shown here and here:

The name of the class that implement’s the application’s backup agent,
a subclass of BackupAgent. The attribute value should be a fully
qualified class name (such as, “com.example.project.MyBackupAgent”).
However, as a shorthand, if the first character of the name is a
period (for example, “.MyBackupAgent”), it is appended to the package
name specified in the element. There is no default. The
name must be specified.

This isn’t a security issue.

4 Answers
4

Leave a Comment