Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmonakhov/libjingle-android
Git super project for libjingle build
https://github.com/dmonakhov/libjingle-android
Last synced: 18 days ago
JSON representation
Git super project for libjingle build
- Host: GitHub
- URL: https://github.com/dmonakhov/libjingle-android
- Owner: dmonakhov
- Created: 2012-05-16T11:50:11.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-07T08:19:11.000Z (almost 12 years ago)
- Last Synced: 2024-07-31T22:56:00.260Z (3 months ago)
- Language: C
- Homepage:
- Size: 114 KB
- Stars: 37
- Watchers: 7
- Forks: 15
- Open Issues: 4
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
########### IMPORTANT ##########################
This project is obsoleted because of two reasons
################################################
1) There is an easy and generic way to build libjingle for android via GYP
tools (see at the bottom of the page). But even if you know how to build
binaries, you still have to write jni-wrapper for java in order to
create full featured android application.2) There is another project https://github.com/lukeweber/webrtc-jingle-client
This project contains:
A) native libjingle build script (build libjingle which use webrtcVoiceEngine)
B) Extensible jni-api for libjingle
C) Example application
And all this stuff just works. Also Luke does good job, and regulary updates
the project. So I've switched to that project, and suggest you do the same
and help us to make this project better.BUILD LIBJINGLE VIA GYP TOOLS:
Install depot_tools from here: http://dev.chromium.org/developers/how-tos/depottools
# mkdir libjingle
# cd libjingle
# gclient config http://git.chromium.org/external/libjingle.git --name trunk
# gclient sync# cd trunk
# export CHROME_SRC=`pwd`
# source build/android/envsetup.sh
# gclient runhooks
# make -j8This is superproject git for libjingle build on android
# Fetch repo
# Important do not forget to initialize submodules
git clone git://github.com/dmonakhov/libjingle-android.git --recursive
# Build ndk
cd libjingle-android
cd jni
ndk-build -j8Build options:
BUILD_UNITTEST: Compile with unittests, disabled by defaults