Skip to content

Commit

Permalink
fix: abrupt video meeting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vamsii777 committed Jul 1, 2021
1 parent 65db92b commit 53751b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ android {
applicationId "download.crossally.apps.hizkiyyah"
minSdkVersion 23
targetSdkVersion 30
versionCode 19
versionCode 20
multiDexEnabled true
versionName "1.4.19"
versionName "1.4.21"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
Expand Down Expand Up @@ -59,7 +59,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-reflect:1.4.32"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32"
implementation('com.smartlook.recording:app:1.5.2-native')
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.android.material:material:1.4.0-alpha02'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
Expand Down Expand Up @@ -90,15 +90,16 @@ dependencies {
// FirebaseUI for Real-time database
implementation 'com.firebaseui:firebase-ui-database:7.1.1'
// Paging Library (For Pagination Only)
implementation 'androidx.paging:paging-runtime:3.0.0'
implementation 'androidx.paging:paging-runtime-ktx:3.0.0'
// Recommended: Add the Firebase SDK for Google Analytics.
implementation 'com.google.firebase:firebase-analytics-ktx'
// Add the Firebase Crashlytics SDK.
implementation 'com.google.firebase:firebase-crashlytics-ktx:17.4.1'
// debugImplementation because LeakCanary should only run in debug builds.
implementation 'com.squareup.picasso:picasso:2.71828' // picasso library
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.5'
implementation('org.jitsi.react:jitsi-meet-sdk:3.6.0') { transitive = true }
implementation('org.jitsi.react:jitsi-meet-sdk:3.0.0') { transitive = true }

implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
implementation 'com.github.ajalt:timberkt:1.5.1'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ class MeetingActivity : FragmentActivity(), JitsiMeetActivityInterface {
.setFeatureFlag("conference-timer.enabled", true)
.setFeatureFlag("resolution", true)
.setFeatureFlag("chat.enabled", false)
.setFeatureFlag("recording.enabled",false)
.setFeatureFlag("help-view.enabled",false)
.setFeatureFlag("meeting-password.enabled", false)
.setVideoMuted(true)
.setAudioMuted(true)
.setWelcomePageEnabled(false)
Expand Down

0 comments on commit 53751b3

Please sign in to comment.