Skip to content

Commit

Permalink
Added new env, Fix mic and meeting leave blank screen issue (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaveshjio authored Oct 18, 2023
1 parent 26b59d7 commit e5073b2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10"
api "com.google.dagger:hilt-android:$hiltVersion"
kapt "com.google.dagger:hilt-android-compiler:$hiltVersion"
implementation 'com.jiomeet.platform:jiomeetcoretemplatesdk:2.3.1-SNAPSHOT-4'
implementation 'com.jiomeet.platform:jiomeetcoretemplatesdk:2.3.1-SNAPSHOT-5'
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ class Constants {
object Environments {
const val RC = "rc"
const val PRESTAGE = "prestage"
const val VirginGroups = "virginGroups"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ class JioCoreSdkPlugin : FlutterPlugin, MethodCallHandler {
val environment = when (call.argument<String>("environmentName").toString()) {
Constants.Environments.PRESTAGE -> Constant.Environment.PRESTAGE
Constants.Environments.RC -> Constant.Environment.RC
Constants.Environments.VirginGroups -> Constant.Environment.VirginGroups
else -> Constant.Environment.PROD
}
BaseUrl.initializedNetworkInformation(selectedEnvironment = environment)
Expand Down
3 changes: 0 additions & 3 deletions example/android/.idea/.gitignore

This file was deleted.

8 changes: 4 additions & 4 deletions lib/Environment.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

enum NetWorkEnvironment {
prestage,
rc
}
prestage,
rc,
virginGroups,
}

0 comments on commit e5073b2

Please sign in to comment.