When I execute the bmgr list transports command in the adb shell with my Android device plugged in, I see the following three backup transports are available for my Android device:
com.android.localtransport/.LocalTransport
com.google.android.gms/.backup.migrate.service.D2dTransport
* com.google.android.gms/.backup.BackupTransportService
I understand that the * character identifies the currently active transport.
I would like to change the currently active transport to com.google.android.gms/.backup.migrate.service.D2dTransport. How do I do this?
Execute the following command in the adb shell whilst your device is plugged in:
Now when you run
bmgr list transports, you will see the following output:To get a better understanding of the bmgr shell tool, just run
bmgrin the adb shell with no arguments and you'll see usage guidance.