在包“android 中找不到属性 'fullBackupContent' 的资源标识符

No resource identifier found for attribute 'fullBackupContent' in package 'android

为什么会出现此错误?

No resource identifier found for attribute 'fullBackupContent' in package 'android

这是我的清单文件的片段:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" ...

<application
    android:allowBackup="true"
    android:icon="@drawable/time_machine_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" 
    android:name="com.friscosoftware.timelytext.TimelyTextApplicationBasic"
    android:fullBackupContent="@xml/backupscheme" 
    > 

文件 backupscheme.xml 位于我的 res/xml 文件夹中。我正在尝试按照 Configuring Auto Backup for Aps

中的说明进行操作

安装 Android SDK 23 解决了我的问题。