android-backup-service Questions

6

Solved

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...

2

Solved

I was wondering if it possible to determine if the user has enabled the option to backup application data to the cloud from within my android app. I can determine this from the command line, from ...
Ghoul asked 29/9, 2011 at 10:9

3

I've created backup rules file just like in example https://developer.android.com/guide/topics/data/autobackup: <?xml version="1.0" encoding="utf-8"?> <full-backup-content xmlns:android="...
Conservatism asked 5/8, 2018 at 1:44

3

Solved

Android supports cloud and local backup of APK files, application data, and so on. Is the device keystore included in the backup? (I don't think you can extract private keys from an hardware-backe...
Gillman asked 13/1, 2016 at 11:22

4

Solved

I have an app which uses Azure to send Push notifications. Azure in turn, uses GCM to send to Android devices. I'm noticing that I have a warning in my AndroidManifest.xml stating On SDK vers...

8

Solved

I am keeping some application meta data in SharedPreferences. Whenever I uninstall the application and reinstall it, the SharedPreferences are deleted. Is there any way to get that to remain, so t...
Salangia asked 22/3, 2012 at 1:44

4

I'm trying to backup/restore shared preferences of my app, I followed this step using Android Backup Service: In Manifest.xml in <application> tag <meta-data android:name="com.google.and...

1

In https://developer.android.com/guide/topics/manifest/application-element, android:fullBackupOnly This attribute indicates whether or not to use Auto Backup on devices where it is availabl...
Pretor asked 5/8, 2019 at 11:32

3

I have implemented the BackupAgent as described at Data Backup, registered an API key and declared the BackupAgent in my Manifest. The Backup part work's quite well, I think; When I run adb shell b...
Benyamin asked 11/1, 2011 at 21:39

1

Solved

I need to implement same thing like whatsapp storing all chat history to google drive on clicking on backup button in app. And same restore it in new device as required. I have look for below refe...

3

Solved

Android Backup Service requires a filename to backup shared preferences: public static final String PREFS = "PrefFile"; SharedPreferencesBackupHelper helper = new SharedPreferencesBackupHelper(th...

0

Hi I am trying to implement backup funcationality similar to whatsapp, but when I come across that after reverse engineering whatsapp manifest code. Here are the observations, android:allowBackup="...

2

Solved

Does Google's Android Backup Service (http://developer.android.com/google/backup/index.html) backup hybrid mobile app data such as sqlite databases and localstorage? I have a cordova app that I am...
Taiga asked 15/1, 2015 at 0:55

1

I am testing my custom BackupAgent. The below is my test in Simulator & Eclipse ADT Test 1 backup & restore using command ---- WORK WELL adb shell bmgr enabled adb shell bmgr backup app_...
Depend asked 3/4, 2015 at 14:57

2

I've had an issue with my device-owner App : before Android 5.1 it was working nicely, but now after the update to Android 5.1, installing a device-owner App disables the Backup Service. Now in t...
Kail asked 20/5, 2015 at 7:38

6

Solved

I created an application which creates and stores files to sdcard. Is there a way to bind the folder with application in order to delete all files when the user runs uninstall on android device?

2

Solved

I have successfully backed up data from my device. On reinstallation, I get my first backup data restored. But my problem is further calls to backup don't get the data sent or saved by the Transpor...
Misconceive asked 15/7, 2015 at 16:57

1

Solved

I've been trying to implement the backup on my app for more than a month, but no success till now. I had done every steps that Google docs inform: Registered on Google Service Changes on Manifest (...
Antwanantwerp asked 13/2, 2015 at 0:0

2

Solved

I want to backup my app's data using Android backup service, but I'm concerned about network usage. I have about 500KB of data that needs to be uploaded for each backup operation. Not much, but if ...
Esurient asked 24/2, 2013 at 5:34

2

Solved

Question in short form: It seems from the followups that I should perhaps emphasize and simplify the core of my question. The core is this: other backup options for Android DBs seems to leave the r...

2

Solved

TL;DR: How do you successfuly use the command-line tools (or anything else) to test the Android 6.0 backup and restore behavior, as I cannot get them to restore anything? Since I was running int...

6

Solved

I have implemented a BackupAgentHelper using the provided FileBackupHelper to backup and restore the native database I have. This is the database you typically use along with ContentProviders and w...

1

I'm trying to implement android auto backup (Android 6.0) but it doesn't work. I get the same error with 10-28 22:58:06.980 600-5578/? I/PFTBT: Initiating full-data transport backup of com.myapp...
Fierce asked 28/10, 2015 at 23:2

0

When I try to backup with auto backup I only get this error message in logcat. How to solve it? I don't find anywhere to see the legal text.. :/ Attempt to do full backup on <mypackage> [ 10...
Shotputter asked 31/10, 2015 at 20:29

1

Solved

I have implemented the "old" GCM implementation where the sample code had the following: public static final String PROPERTY_REG_ID = "registration_id"; private SharedPreferences getGCMPreference...
Dynamotor asked 29/10, 2015 at 8:17

© 2022 - 2024 — McMap. All rights reserved.