From 1c8b6ca4d7dd7c8263d5224de6e814681a14afa5 Mon Sep 17 00:00:00 2001
From: Scott Main
Most applications shouldn't need to extend the {@link android.app.backup.BackupAgent} class -directly, but should instead extend BackupAgentHelper to take +directly, but should instead extend BackupAgentHelper to take advantage of the built-in helper classes that automatically backup and restore your files. However, you might want to extend {@link android.app.backup.BackupAgent} directly if you need to:
If you don't need to perform any of the tasks above and want to back up complete files from {@link android.content.SharedPreferences} or internal storage, you -should skip to Extending BackupAgentHelper.
+should skip to Extending BackupAgentHelper. diff --git a/docs/html/guide/topics/resources/providing-resources.jd b/docs/html/guide/topics/resources/providing-resources.jd index cac85e8..7e2f8a0 100644 --- a/docs/html/guide/topics/resources/providing-resources.jd +++ b/docs/html/guide/topics/resources/providing-resources.jd @@ -761,7 +761,7 @@ Android runs your application, it will crash if you do not provide default resou cannot use the resources named with the new qualifier. For example, if your {@code minSdkVersion} is set to 4, and you qualify all of your drawable resources using night mode ({@code night} or {@code notnight}, which were added in API +href="#NightQualifier">night mode ({@code night} or {@code notnight}, which were added in API Level 8), then an API Level 4 device cannot access your drawable resources and will crash. In this case, you probably want {@code notnight} to be your default resources, so you should exclude that qualifier so your drawable resources are in either {@code drawable/} or {@code drawable-night/}. -- cgit v1.1