일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 그룹채팅구현
- ERD툴
- firebase
- BLUETOOTH
- android studio
- AWS
- androidstudio
- cloudmessage
- 계층형 테이블
- MotionLayout
- 개발일지
- node.js
- PDFViewer
- socket.io
- android pdf viewer
- erdcloud
- 채팅방구현
- Android
- node js
- Serial
- Flutter
- FCM
- DevExpress
- socket통신
- EC2
- 서버배포
- ERDTool
- 상태관리
- provider
- 암호화
- Today
- Total
목록androidstudio (2)
nueog

ASP.net 환경에서 만든 웹 어플리케이션에서 특정 상황에서 android 앱으로 FCM 신호를 보내줘야하는 상황이 생겼다. FCM 을 보낼 때는 페이로드에 형식을 지켜서 보내주면 된다. 나는 Notification 이라는 클래스를 만들어서 사용했다. public class Notification { public string SendNotification(string DeviceToken, string title, string msg) { var result = "-1"; var httpWebRequest = (HttpWebRequest)WebRequest.Create(NumDefine.webAddr); //https://fcm.googleapis.com/fcm/send httpWebRequest.Co..
과제에서 블루투스 연결해야해서 블루투스 기능을 깃허브에서 적당한 예제를 찾아서 따와서 고쳐보았다. https://github.com/kai-morich/SimpleBluetoothLeTerminal kai-morich/SimpleBluetoothLeTerminal Android terminal app for Bluetooth LE devices using custom serial profiles - kai-morich/SimpleBluetoothLeTerminal github.com 요걸 활용해서 개발해보았다. 그리고 여기서 제공하지 않는 새로고침/삭제/끊겼을시 자동연결 등의 기능을 새롭게 만들어봤다. 1. 끊겼을 시 자동연결 connect()함수로 블루투스 연결을 하는데 onSerialconnecter..