Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android 6 Essentials

You're reading from   Android 6 Essentials Design, build, and create your own applications using the full range of features available in Android 6

Arrow left icon
Product type Paperback
Published in Dec 2015
Publisher Packt
ISBN-13 9781785884412
Length 122 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Yossi Elkrief Yossi Elkrief
Author Profile Icon Yossi Elkrief
Yossi Elkrief
Arrow right icon
View More author details
Toc

Backup configuration testing

By now, you have created a backup configuration and you might (should) test it and make sure that your app saves the data, restores it, and works without any issues.

Setting backup logs

Before you test your app's configuration, you might want to enable logging; this is done via adb, where you set the parser log property to VERBOSE:

$ adb shell setprop log.tag.BackupXmlParserLogging VERBOSE

Testing the backup feature can be split into two parts:

  • Testing the backup phase
  • Testing the restore phase

Testing the backup phase

The backup can be run manually, but first, you must run the Backup Manager via the adb command:

$ adb shell bmgr run

After the Backup Manager is up and running, we can trigger the backup phase via adb and run our app's package name as the <PACKAGE.NAME> parameter:

$ adb shell bmgr fullbackup <PACKAGE.NAME>

Testing the restore phase

We executed the backup phase and all went well. Now, we want to test the restore phase and verify that...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime