From 7f986769574b75239a5ac3ae54fd67202d61d89c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 16 Dec 2011 20:57:21 +0300 Subject: [PATCH] implement cloud settings backup --- AndroidManifest.xml | 10 ++++++++-- src/org/fox/ttrss/PrefsBackupAgent.java | 19 +++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 src/org/fox/ttrss/PrefsBackupAgent.java diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 4e621e15..dc479f22 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionCode="44" + android:versionName="0.3.11" > @@ -11,6 +11,8 @@ @@ -43,6 +45,10 @@ + + + \ No newline at end of file diff --git a/src/org/fox/ttrss/PrefsBackupAgent.java b/src/org/fox/ttrss/PrefsBackupAgent.java new file mode 100644 index 00000000..0a7e5dec --- /dev/null +++ b/src/org/fox/ttrss/PrefsBackupAgent.java @@ -0,0 +1,19 @@ +package org.fox.ttrss; + +import android.app.backup.BackupAgentHelper; +import android.app.backup.SharedPreferencesBackupHelper; + +public class PrefsBackupAgent extends BackupAgentHelper { + // The name of the SharedPreferences file + static final String PREFS = "org.fox.ttrss_preferences"; + + // A key to uniquely identify the set of backup data + static final String PREFS_BACKUP_KEY = "prefs"; + + // Allocate a helper and add it to the backup agent + @Override + public void onCreate() { + SharedPreferencesBackupHelper helper = new SharedPreferencesBackupHelper(this, PREFS); + addHelper(PREFS_BACKUP_KEY, helper); + } +}