summaryrefslogtreecommitdiff
path: root/samples/BackupRestore
Commit message (Collapse)AuthorAgeFilesLines
* Changes in some of the Android samples to support Google TVKartic Grover2012-04-251-0/+1
| | | | | | Made changes in manifest files for 3 Android samples, namely ActionBarCompat, BackupRestore and CrossCompatibility for supporting Google TV devices. Changes related to making touchscreen support as optional and adding support for large screen devices was added. Change-Id: Ie49b6fe94d750304b249b154b4bd9dffc3f789ee
* Add self-restore capability to Backup/Restore sample appChris Tate2010-11-165-46/+86
| | | | | | | | | | | The Backup/Restore sample application now provides a "restore my own last-known-good data" button. When it is clicked the app will run the standard public BackupManager.requestRestore() operation. (This was the one aspect of the public API that was not previously exercised by the sample app.) Change-Id: I8abcfbad4b27b35fe9fafbbb97f89bac1d7a668c
* Add API key to BackupRestore sample code.Dan Egnor2010-06-031-1/+5
| | | | | Change-Id: If80cbceffc213fdc6059fe22bf0e24520fba5f2d Bug: 2735063
* Add Backup/Restore sample to the SDK docsChristopher Tate2010-04-071-0/+5
| | | | | | Part of bug #2545514 Change-Id: I9085ebfdce3552ddab602eec8d40de67b219a834
* Backup/Restore sample applicationChristopher Tate2010-04-068-0/+953
A very simple application: one activity, with a few bits of persistent data that are updated live by the activity. To that are added a few alternative agent implementations, to illustrate various approaches and tradeoffs when implementing a backup/restore agent. In particular, there are example agents that do everything "by hand," either record-by-record or by directly backing up the app's entire persistent data file; plus an example agent that illustrates how very easy it is to implement the latter using the OS-provided helpers. Part of bug #2545514 Change-Id: Iaca33a5113406360c23d6e2e59eb012f9f1e9400