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 adb shell by calling:
bmgr enabled
Does android provide an API to do so from code?
Settings.BACKUP_ENABLED
constant, which is marked as@UnsupportedAppUsage
as of Version R, so won't work on newer phones – Translucent