목록프로그래밍 (2)
변명은 만개 결과는 한개
간단히 TcpListener (우선은 서버) 만들기 using System.Net; using System.Net.Sockets; namespace TcpListenser { class Program { static void Main(string[] args) { TcpListener tcpListener = new TcpListener(IPAddress.Parse("192.168.35.133"), 7); tcpListener.Start(); Console.WriteLine("대기 시작"); TcpClient tcpClient = tcpListener.AcceptTcpClient(); Console.WriteLine("대기 종료"); tcpListener.Stop(); } } } 요건 tcpClient ..
와.. 진짜.. 겨우 sdb connect 사용해서 galaxy watch 랑 studio 연결해서 이제 코딩 공부하고 앱 실행만 하면 될줄 알았는데 -_- 실물 Device 에다가 빌드하려면 Samsung Certificate 가 필요하단다. 여기까진 오케이! 구글링 하니까 한글로 친절하게 설명되어있는곳도 있었고.. 따라하는데 일단 안되는부분 1. Certificate Manager 에서 새로 Profile 만들때, Select the type of certificate profile의 Samsung 이 없었음. 이게 왜 없나 싶었는데 Samsung Certificate Extension 을 설치해야함. 이거 설치하고 나면 잘 보임! 2. 대망의 certificate in signature is not..