3

我想在测试期间启用一些标签的日志记录。

我该如何执行

adb shell setprop log.tag.GAv4 DEBUG

在firebase模拟器上?

4

2 回答 2

1

There's currently no way to execute arbitrary adb commands prior to a test in Firebase Test Lab. Feel free to file a feature request to indicate what you're trying to do.

于 2018-02-21T17:12:56.103 回答
0

你试过executeShellCommand吗?

https://developer.android.com/reference/android/app/UiAutomation#executeShellCommand(java.lang.String)

执行一个 shell 命令。此方法返回一个指向标准输出流的文件描述符。命令执行类似于从连接到设备的主机运行“adb shell”。

(参考:https ://github.com/Flank/flank/issues/1808 )

于 2022-02-04T10:40:10.677 回答