adb_utils 0.2.2
adb_utils: ^0.2.2 copied to clipboard
A Dart library for interacting with ADB (Android Debug Bridge) server and devices.
0.2.2 #
- feat(adb_sync): fully implemented file transfer operations via the ADB SYNC protocol.
- Added
pull(): download files using memory-efficient streaming. - Added
readBytes()andreadText(): read remote file contents directly into memory. - Added
stat(): query remote file size, mode, and modification time.
- Added
0.1.3 #
- fix: apply
dart formattoapp_info.dartandadb_utils_test.dart
0.1.2 #
- added
AppInfo.fromDumpsysto get more detailed information about the app, such as version and permissions. This is useful for users who want to know more about the apps installed on their devices. - added
AdbDevice.appInfoto retrieve theAppInfofor a given package name.