You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closing this issue as it's very old. However Ubuntu 12.04 is too old as well, that was probably the issue. I don't care about supporting ancient build systems.
The script
'size=$(adb shell dumpsys window | grep -Eo 'init=\d+x\d+' | head -1 | cut -d= -f 2)'
can not find the string 'init=480x854'
Should change to
'size=$(adb shell dumpsys window | grep -Eo 'init=[0-9]+x[0-9]+' | head -1 | cut -d= -f 2)'
The text was updated successfully, but these errors were encountered: