+def arguments_adb(subparser):
+ ret = subparser.add_parser("adb", help="manage adb connection")
+ sub = ret.add_subparsers(title="subaction", dest="subaction")
+ sub.add_parser("connect", help="connect adb to the Android container")
+ sub.add_parser("disconnect", help="disconnect adb from the Android container")
+ return ret
+