75py
75py
I found a workaround. ``` cd C:\Users\username\Downloads\maestro-1.5.0\maestro-1.5.0\bin mkdir .android .\maestro hierarchy ``` https://github.com/mobile-dev-inc/dadb/blob/ef3d30ed1b805debc8e5719b08f417568bd52c2a/dadb/src/main/kotlin/dadb/AdbKeyPair.kt#L73 It seems to look for .android in the current directory because HOME is not set by default.
Perhaps the problem is the newline code of the adbkey file. dadb supports only LF. https://github.com/mobile-dev-inc/dadb/blob/ef3d30ed1b805debc8e5719b08f417568bd52c2a/dadb/src/main/kotlin/dadb/PKCS8.kt#L31 In Windows, the newline code is CRLF.
@m-sasha Thank you for the quick response. I've removed the `horizontalScroll` modifier from `LazyRow` as you suggested and pushed the changes. However, the issue still persists. Horizontal scrolling is not...
I've recently updated the Compose plugin to version 1.6.0-beta01, and I'd like to share some updates regarding the issues previously reported: 1. The issue where the Compose view did not...