#Android命令
#獲取手機名稱
GET_PHONE_NAME = 'adb shell getprop ro.product.model'
#獲取手機版本
GET_PHONE_VERSION = 'adb shell getprop ro.build.version.release'
#獲取手機廠商
GET_PHONE_PRODUCER = 'adb shell getprop ro.product.brand'
#獲取手機已安裝的輸入法
GET_PHONE_HAD_IME = 'adb shell ime list -s'
#獲取手機當前輸入法
GET_PHONE_CURRENT_IME = 'adb shell settings get secure default_input_method'
#設置手機輸入法
SET_PHONE_IME = 'adb shell settings put secure default_input_method' #此方法后面必須再加包名
#獲取手機分辨率
GET_SCREEN_SIZE = 'adb shell wm size'
#非中文輸入
INPUT_TEXT = 'adb shell input text'