[Issue]

- 블루스택(Bluestacks App Player)을 이클립스에 연동하기


[In My Case]

- 내 경우, 이클립스에 블루스택이 인식 자체가 안됐다.

- logcat 은 커녕, device 도 잡히지 않았다.


[Solution]

- window os 인 경우, 명령프롬프트 창에서 


1st. adt가 있는 폴더 경로로 이동

> cd C:\......\sdk\platform-tools 엔터

2st. 블루스택에 접속

> adb connect 127.0.0.1:5555 엔터


3st. 메시지 :    connected to 127.0.0.1:5555 이 출력되면 성공


(예외사항) 

메시지 :     unable to connect to 127.0.0.1:5555 이 출력되면

2번째 명령문을 5555에서 9999, 또는 10001, 또는 10002 으로 변경하여 재실행하면 될 듯 싶다.


Message: jquery-1.7.2.min.js error in Eclipse


Solution :

1) Right click your Project root folder in your Eclipse Project Explorer View

2) Properties > JavaScript > Include Path > Source Tab

3) Select Excluded and Edit… and then Add

4) Now you can either browse for JavaScript file which has errors or just enter a wildcard pattern which will exclude anything matched by your pattern. In my case in entered **/jquery*.js to exclude all jQuery library files.

5) Then you can hit OK, Finish and OK again


Your Eclipse Progress View should now show a Building Workspace message

The Error Symbol is gone!


※ http://jquery.com/download/



By http://imwill.com/eclipse-java-ee-jquery-validation-error-workaround/#.UKl2abTx7nY

+ Recent posts