Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-android
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-android
Commits
a405b6c9
Commit
a405b6c9
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
* #29941: modified jenkins script
parent
185f1050
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
jenkins-sflphone-android.sh
+15
-11
15 additions, 11 deletions
jenkins-sflphone-android.sh
jni/Android.mk
+0
-1
0 additions, 1 deletion
jni/Android.mk
src/com/savoirfairelinux/sflphone/receivers/IncomingReceiver.java
+1
-1
1 addition, 1 deletion
...savoirfairelinux/sflphone/receivers/IncomingReceiver.java
with
16 additions
and
13 deletions
jenkins-sflphone-android.sh
+
15
−
11
View file @
a405b6c9
...
...
@@ -107,16 +107,24 @@ launch_emulator() {
}
build_sflphone_android
()
{
echo
"Cleaning git tree"
echo
"
-----------------
Cleaning git tree"
# get rid of any local modifications to git submodule
git submodule update
echo
"----------------- Pull sflphone daemon master branch"
pushd
jni/sflphone
git clean
-dfx
git checkout master
git pull
popd
# build daemon
echo
"----------------- Build daemon"
cd
daemon
./autogen.sh
./configure-android.sh
popd
# android update project --target $VIRTUAL_DEVICE_ID --path $ANDROID_PROJECT_PATH
echo
"Compile pjandroid stack"
echo
"
-----------------
Compile pjandroid stack"
pushd
jni/pjproject-android/
./configure-android
--disable-sound
--disable-oss
--disable-video
--enable-ext-sound
--disable-speex-aec
--disable-g711-codec
--disable-l16-codec
--disable-gsm-codec
--disable-g722-codec
--disable-g7221-codec
--disable-speex-codec
--disable-ilbc-codec
--disable-sdl
--disable-ffmpeg
--disable-v4l
make dep
&&
make
...
...
@@ -124,19 +132,15 @@ build_sflphone_android() {
./make-swig.sh
# build daemon
pushd
jni/sflphone/daemon
./autogen.sh
./configure-android.sh
popd
cd
jni/
echo
"Build JNI related libraries"
echo
"
-----------------
Build JNI related libraries"
# ndk-build clean
$ANDROID_NDK
/ndk-build
cd
..
echo
"Build Java application"
echo
"
-----------------
Build Java application"
ant update project
-p
.
ant clean
ant debug
...
...
This diff is collapsed.
Click to expand it.
jni/Android.mk
+
0
−
1
View file @
a405b6c9
...
...
@@ -162,7 +162,6 @@ LOCAL_LDLIBS += -L$(APP_PROJECT_PATH)/obj/local/armeabi \
-lpj-
$(
TARGET_NAME
)
\
-lccgnu2
\
-lsamplerate
\
-lspeex
\
-lspeexresampler
\
-lsamplerate
\
-lcrypto
\
...
...
This diff is collapsed.
Click to expand it.
src/com/savoirfairelinux/sflphone/receivers/IncomingReceiver.java
+
1
−
1
View file @
a405b6c9
...
...
@@ -100,7 +100,7 @@ public class IncomingReceiver extends BroadcastReceiver {
}
}
else
if
(
newState
.
equals
(
"HUNGUP"
))
{
Log
.
e
(
TAG
,
"HUNGUP call:"
+
b
.
getString
(
"CallID"
));
//
Log.e(TAG, "HUNGUP call:" + b.getString("CallID"));
if
(
callback
.
getCurrent_calls
().
get
(
b
.
getString
(
"CallID"
))
!=
null
)
{
callback
.
getCurrent_calls
().
remove
(
b
.
getString
(
"CallID"
));
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment