Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Integrate Linphone in an Existing Android Project

I am new to Linphone and I am having problem Regarding integration of linphone to my android project. As there are no enough Tutorial Regarding Linphone Libraries and How to Use it. So I would Like to reguest to Provide me step by step guide to help me regarding Integration of linphonoe to my android project

Thanks in Advance

like image 927
Meena Avatar asked Mar 04 '13 10:03

Meena


2 Answers

After doing lots of research on android linphone, I have published two tutorials and add an excel sheet to setup and change code of android linphone. To setup android linphone project, you need to have Mac/Linux System. Here are links:-

  1. Android Linphone Tutorial-1
  2. Android Linphone Tutorial-2
like image 139
Md Mohsin Avatar answered Dec 08 '22 08:12

Md Mohsin


Clone linphone-android project from git and build using android NDK R9. Build it on linux and before starting build, make sure that you have all the packages mentioned in README file. To build the project, just type:

# make

and after successful compilation, generate linphone SDK using following command:

# make linphone-sdk

It will generate a zip file congaining linphone.jar file and native .so modules in different directories for different architectures.

Create a new android application project in eclipse, copy linphone.jar and other directories in libs directory under newly created android project, and refresh your project in eclipse. It will automatically add linphone.jar and other native linux (android) modules.

You are good to go... import packages in your android activities use the API.

like image 36
Muhammad Shahbaz Avatar answered Dec 08 '22 08:12

Muhammad Shahbaz