Added Remote Debug UI.

This commit is contained in:
Gunther Brunner
2014-06-20 20:44:25 +09:00
parent 905879235e
commit 5454b302ff
5 changed files with 18 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
module.exports = function RemoteDebugCtrl($scope) {
$scope.remoteDebugCommand = function () {
var server = '127.0.0.1:5555'
return 'adb connect ' + server
}
}