Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elisescu/android-webrtc
simple webrtc client for Android taken from libjingle source code and compiled separately.
https://github.com/elisescu/android-webrtc
Last synced: 8 days ago
JSON representation
simple webrtc client for Android taken from libjingle source code and compiled separately.
- Host: GitHub
- URL: https://github.com/elisescu/android-webrtc
- Owner: elisescu
- Created: 2013-11-18T19:39:18.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-18T20:26:17.000Z (almost 11 years ago)
- Last Synced: 2024-09-20T00:30:00.536Z (about 2 months ago)
- Language: Java
- Homepage: http://www.webrtc.org/reference/getting-started
- Size: 1.96 MB
- Stars: 3
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
android-webrtc
==============Simple webrtc client for Android taken from libjingle source code and compiled separately.
It contains both the native and the JNI wrapper for libjingle (`./lib/`).- **update** the project to generate the `build.xml` file. Example for API-17:
```bash
android update project -p . -t android-17
```
- **build** the project using ant (or import it to Eclipse/IntelliJ). Example for debug build:```bash
ant debug
```
- **install** the apk just built:```bash
adb install ./bin/AppRTCDemoActivity-debug.apk
```- Note: currently the native library is compiled just for ARM.