Skip to content

Commit

Permalink
chore: Removed noise cancellation dependency from hmssdk and moved it…
Browse files Browse the repository at this point in the history
… to application
  • Loading branch information
Decoder07 committed Aug 6, 2024
1 parent 5dca78c commit 2fb878c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/hmssdk_flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ dependencies {
implementation "live.100ms:android-sdk:${sdkVersions['android']}"
implementation "live.100ms:video-view:${sdkVersions['android']}"
implementation "live.100ms:hls-player:${sdkVersions['android']}"
implementation "live.100ms:hms-noise-cancellation-android:${sdkVersions['android']}"
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
Expand Down
5 changes: 5 additions & 0 deletions packages/hmssdk_flutter/example/android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import groovy.json.JsonSlurper

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
def sdkVersions = new JsonSlurper().parse file("../../../lib/assets/sdk-versions.json")

if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
Expand Down Expand Up @@ -79,6 +83,7 @@ flutter {
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.firebase:firebase-crashlytics:18.6.2'
implementation "live.100ms:hms-noise-cancellation-android:${sdkVersions['android']}"
}

apply plugin: 'com.google.gms.google-services'
Expand Down

0 comments on commit 2fb878c

Please sign in to comment.