Skip to content

Commit

Permalink
Merge pull request #381 from 100mslive/dev
Browse files Browse the repository at this point in the history
Dev to release
  • Loading branch information
AniketSK authored Jun 7, 2023
2 parents 6f3dd7c + d4ab820 commit 0d72314
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ android {

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

buildConfigField "boolean", "INTERNAL", INTERNAL
buildConfigField "boolean", "INTERNAL", project.findProperty('INTERNAL') ? INTERNAL : "false"
buildConfigField "String", "TOKEN_ENDPOINT", TOKEN_ENDPOINT
buildConfigField "String", "BUG_REPORT_EMAIL_TO", BUG_REPORT_EMAIL_TO
buildConfigField "String", "BUG_REPORT_EMAIL_CC", BUG_REPORT_EMAIL_CC
buildConfigField "String", "BUG_REPORT_EMAIL_TO", project.findProperty('BUG_REPORT_EMAIL_TO') ? BUG_REPORT_EMAIL_TO : "\"\""
buildConfigField "String", "BUG_REPORT_EMAIL_CC", project.findProperty('BUG_REPORT_EMAIL_CC') ? BUG_REPORT_EMAIL_CC : "\"\""
buildConfigField "String", "RTMP_INJEST_URL", project.findProperty('RTMP_INJEST_URL') ? RTMP_INJEST_URL : "\"\""
}

Expand Down Expand Up @@ -64,7 +64,7 @@ dependencies {
// To use all the modules use the following dependency
// implementation 'com.github.100mslive.android-sdk:lib:2.5.0'

def hmsVersion = "2.6.2"
def hmsVersion = "2.6.7"
// To add dependencies of specific module
implementation "live.100ms:android-sdk:$hmsVersion"
implementation "live.100ms:virtual-background:$hmsVersion"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
100MS_APP_VERSION_CODE=364
100MS_APP_VERSION_NAME=3.9.5
100MS_APP_VERSION_CODE=365
100MS_APP_VERSION_NAME=3.9.6

0 comments on commit 0d72314

Please sign in to comment.