-
-
Save lisicnu/bea670d0f932574c0a27297e4759b8dd to your computer and use it in GitHub Desktop.
Revisions
-
Mohsen revised this gist
Feb 4, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,7 +18,8 @@ task adbConnect(type: Exec) { button(defaultButton: true, text: 'Connect', actionPerformed: { def device_ip = input.text; println "Connecting to Device With IP : $device_ip"; def adb = "$System.env.ANDROID_HOME/platform-tools/adb.exe" executable adb args "connect", device_ip dispose(); // Close dialog }) -
Mohsen revised this gist
Feb 4, 2015 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -26,4 +26,14 @@ task adbConnect(type: Exec) { } } } } task adbDevices(type: Exec) { executable System.getenv("ANDROID_HOME") + "\\platform-tools\\adb.exe" args "devices" } task adbLogCat(type: Exec) { executable System.getenv("ANDROID_HOME") + "\\platform-tools\\adb.exe" args "logcat" } -
Mohsen created this gist
Feb 4, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ import groovy.swing.SwingBuilder task adbConnect(type: Exec) { doFirst { new SwingBuilder().edt { dialog(modal: true, title: 'Enter password', alwaysOnTop: true, resizable: false, locationRelativeTo: null, pack: true, show: true ) { vbox { // Put everything below each other label(text: "Please enter your Android device IP") input = textField() button(defaultButton: true, text: 'Connect', actionPerformed: { def device_ip = input.text; println "Connecting to Device With IP : $device_ip"; executable System.getenv("ANDROID_HOME") + "\\platform-tools\\adb.exe" args "connect", device_ip dispose(); // Close dialog }) } } } } }