diff --git a/README.md b/README.md new file mode 100644 index 0000000..6f38425 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# adb-tools-mac + +adb-tools-mac is a macOS menu bar app written in SwiftUI for common adb tools. + + + + + +- Connect device over tcp +- Take screenshots and record screen +- Open deeplinks +- Capture logcat + + +Download app from [Releases](https://github.com/naman14/adb-tools-mac/releases) + +The app includes the adb executable internally to avoid having common installation issues with adb. \ No newline at end of file diff --git a/adbconnect/AppDelegate.swift b/adbconnect/AppDelegate.swift index 711d394..b419ac6 100644 --- a/adbconnect/AppDelegate.swift +++ b/adbconnect/AppDelegate.swift @@ -17,7 +17,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { func applicationDidFinishLaunching(_ aNotification: Notification) { // Create the popover let popover = DevicesPopover() - popover.contentSize = NSSize(width: 300, height: 320) + popover.contentSize = NSSize(width: 300, height: 250) popover.behavior = .transient self.popover = popover diff --git a/screenshots/screen1.png b/screenshots/screen1.png new file mode 100644 index 0000000..5ab62b9 Binary files /dev/null and b/screenshots/screen1.png differ diff --git a/screenshots/screen2.png b/screenshots/screen2.png new file mode 100644 index 0000000..b639e79 Binary files /dev/null and b/screenshots/screen2.png differ