Skip to content
Snippets Groups Projects
Commit 19f5e058 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

rename libringclient to libjamiclient

Change-Id: I8c1e93e147732d61715f69cb1e6f08a30b4abe96
parent 11467bd9
No related branches found
No related tags found
No related merge requests found
Showing
with 4 additions and 2 deletions
...@@ -85,7 +85,7 @@ make .gas ...@@ -85,7 +85,7 @@ make .gas
# Generate JNI interface # Generate JNI interface
JNIDIR=$DAEMON_DIR/bin/jni JNIDIR=$DAEMON_DIR/bin/jni
cd $JNIDIR cd $JNIDIR
PACKAGEDIR=$ANDROID_APP_DIR/libringclient/src/main/java/net/jami/daemon $JNIDIR/make-swig.sh PACKAGEDIR=$ANDROID_APP_DIR/libjamiclient/src/main/java/net/jami/daemon $JNIDIR/make-swig.sh
# Setup cross-compilation build environemnt # Setup cross-compilation build environemnt
export AR=$TOOLCHAIN/bin/llvm-ar export AR=$TOOLCHAIN/bin/llvm-ar
......
...@@ -81,7 +81,7 @@ android { ...@@ -81,7 +81,7 @@ android {
dependencies { dependencies {
implementation fileTree(include: '*.jar', dir: 'libs') implementation fileTree(include: '*.jar', dir: 'libs')
implementation project(':libringclient') implementation project(':libjamiclient')
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.6.0' implementation 'androidx.core:core-ktx:1.6.0'
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
package cx.ring.tv.call package cx.ring.tv.call
import android.Manifest import android.Manifest
import android.annotation.SuppressLint
import android.app.Activity import android.app.Activity
import android.app.PictureInPictureParams import android.app.PictureInPictureParams
import android.content.ComponentName import android.content.ComponentName
...@@ -575,6 +576,7 @@ class TVCallFragment : BaseSupportFragment<CallPresenter, CallView>(), CallView ...@@ -575,6 +576,7 @@ class TVCallFragment : BaseSupportFragment<CallPresenter, CallView>(), CallView
binding.confControlGroup!!.visibility = View.VISIBLE binding.confControlGroup!!.visibility = View.VISIBLE
if (confAdapter == null) { if (confAdapter == null) {
confAdapter = ConfParticipantAdapter(object : ConfParticipantSelected { confAdapter = ConfParticipantAdapter(object : ConfParticipantSelected {
@SuppressLint("RestrictedApi")
override fun onParticipantSelected(view: View, contact: ParticipantInfo) { override fun onParticipantSelected(view: View, contact: ParticipantInfo) {
val context = requireContext() val context = requireContext()
val popup = PopupMenu(context, view) val popup = PopupMenu(context, view)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment