android,mysql,sqlite,android-backup-service
In theory only with that code and changes on AndroidManifest the backup should work as per Android Google page inform. Please take a look on this page: http://developer.android.com/guide/topics/data/backup.html For summary from this above page: To implement a backup agent, you must: 1 - Declare your backup agent in your manifest...
android,google-play-games,android-backup-service
It sounds like a better solution would be to use the Google Drive API. Specifically, the ability to store application data. From the developer doc: The 'Application Data folder' is a special folder that is only accessible by your application. Its content is hidden from the user, and from other...
android,sqlite,android-backup-service
You can copy your sqlite db to sdcard like this private void exportDB(){ File sd = Environment.getExternalStorageDirectory(); File data = Environment.getDataDirectory(); FileChannel source=null; FileChannel destination=null; String currentDBPath = "/data/"+ "com.your.package" +"/databases/"+db_name; String backupDBPath = SAMPLE_DB_NAME; File currentDB = new File(data, currentDBPath); File backupDB = new File(sd, backupDBPath); try { source...
android,android-backup-service
My steps: 1. Write something at the EditText, click Backup button 2. Close app and open again. The saved value will be shown in EditText 3. Uninstall the app and reinstall again. The saved value is not shown in EditText at all. To test your implementation there are others...
android,cordova,mobile,android-backup-service
It appears like the Android Backup Service is not plug and play with sqlite databases. I found this under the Extending BackupAgent section http://developer.android.com/guide/topics/data/backup.html#BackupAgent: If you have an SQLite database that you want to restore when the user re-installs your application, you need to build a custom BackupAgent that reads...