일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- firebase
- workmanager
- jobdispatcher
- 빈
- Background
- livedatam
- schedule
- jobschduler
- Library
- Service
- 검사
- Job
- shceduler
- PHP
- alarmanager
- epmty
- Android
- Today
- Total
목록web/webRTC (7)
에몽이
WebRTC window Build:https://cryingnavi.github.io/WebRTC-Android/ 주의사항virtual Box사용하지 마시고 VMware를 사용하세요VMware의 공유폴더 지정은 검색하시면 금방나옵니다.그 외는 전부 같습니다 설치 모두 완료하시고 이클립스에 import하는 부분부터는 따로하셔야됩니다. src/webrtc/examples/androidapp 전체를 공유폴더로 복사하고 이를 다시 원래 사용하고 있던 OS(window)에 원하는 폴더로 복사합니다.안드로이드 스튜디오를 실행시켜 new Project->import project를 사용하여 통째로 import합니다 총 4개의 라이브러리와 2개의 so파일이 필요합니다.라이브러리 파일은out/Default/lib.ja..
출처:http://stackoverflow.com/questions/36829837/native-android-webrtc-application-development
윈도 환경에서 v8 빌드이번에도 Visual Studio Community 2015이 설치되어있다는 조건하에 진행.v8의 위키 페이지(https://github.com/v8/v8/wiki)에서 보면 빌드 방법으로는 GN을 사용하는 것. 그리고 deprecated가 된 Gyp가있다. 무엇을 사용하든 depot_tools라는것이 필수.예전에 한번 심심풀이로 빌드해봤을때는 gyp설치가 잘 안되어 고생을 좀 했지만 큰 문제없이 hello world를 빌드했는데… 지금은 gyp가 deprecated로 표시되어있어 gn을 사용해 보려하니 관련 내용이 부실해서 크게 애먹었다(…).그래서 gyp를 사용하는걸 더 추천하고싶고, gn은 단점이있어 그다지 추천하고싶지않다.– Gyp/GN 공통 1. Qt 5.7.0을 빌드하는..
Node.jsvar https = require('https'); var fs = require('fs'); var options = { key: fs.readFileSync('/etc/letsencrypt/live/example.com/privkey.pem'), cert: fs.readFileSync('/etc/letsencrypt/live/example.com/cert.pem'), ca: fs.readFileSync('/etc/letsencrypt/live/example.com/chain.pem') }; https.createServer(options, function (req, res) { res.writeHead(200); res.end("hello world\n"); }).listen(8000)..
Embedding Crosswalk in Android StudioAn updated version of this post can be found at: http://diego.org/2016/09/20/embedding-crosswalk-in-android-studio-updated/Note: The Crosswalk team has stopped development on this project. You can read more about it here: Crosswalk 23 to be the last Crosswalk releaseCrosswalk is a web runtime that replaces the built in WebView used by Android. Crosswalk is ba..
https://github.com/muaz-khan/WebRTC-Experimenthttps://www.webrtc-experiment.com/
Table of ContentsHTTPSClass: https.AgentClass: https.Serverserver.setTimeout([msecs][, callback])server.timeouthttps.createServer(options[, requestListener])server.close([callback])server.listen(handle[, callback])server.listen(path[, callback])server.listen([port][, host][, backlog][, callback])https.get(options[, callback])https.globalAgenthttps.request(options[, callback])HTTPS#Stability: 2 -..