Remove time display on android screen recordings
Summary: Changelog: Creating an Android screen recording no longer includes meta information like frame rate. Context: https://fb.workplace.com/groups/flippersupport/permalink/1088379648309359/ Before: {F454408806} Reviewed By: mweststrate Differential Revision: D26765408 fbshipit-source-id: 560d7ba4ff4ccff1b4a17f1c1073efe7638e397a
This commit is contained in:
committed by
Facebook GitHub Bot
parent
dd76279caf
commit
b26ca1502d
@@ -177,7 +177,7 @@ export default class AndroidDevice extends BaseDevice {
|
||||
console.error('Error while getting device size', err);
|
||||
}
|
||||
const sizeArg = newSize ? `--size ${newSize}` : '';
|
||||
const cmd = `screenrecord --bugreport ${sizeArg} "${recordingLocation}"`;
|
||||
const cmd = `screenrecord ${sizeArg} "${recordingLocation}"`;
|
||||
this.recordingProcess = this.adb
|
||||
.shell(this.serial, cmd)
|
||||
.then(adb.util.readAll)
|
||||
|
||||
Reference in New Issue
Block a user