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 op
I've dove further on researching the Android Backup Manager Service and discovered the following:
I interpret this as each DataChanged() call in our App notifies the Backup Manager Service via transport. The Backup Manager Service will only perform ONE call to our App's Backup Agent's onBackup(), even if DataChanged gets called several times before the Backup Manager Service responds when it wants to (see item 2 below on Backup Manager respond frequency).