Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Oct 31, 2023
2 parents 281a6ef + d4dcd7d commit 898fdf0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public fun ReactionAction(
modifier = Modifier
.padding(12.dp)
.clickable(enabled = enabled) { onCallAction(Reaction) },
tint = Color.White,
painter = painterResource(id = R.drawable.stream_video_ic_reaction),
contentDescription = stringResource(R.string.stream_video_call_controls_reaction),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,6 @@ public abstract interface class io/getstream/video/android/core/StreamVideo : io
public abstract fun connectAsync (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun createDevice (Lio/getstream/android/push/PushDevice;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun deleteDevice (Lio/getstream/video/android/model/Device;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public fun devToken (Ljava/lang/String;)Ljava/lang/String;
public abstract fun getContext ()Landroid/content/Context;
public abstract fun getEdges (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun getState ()Lio/getstream/video/android/core/ClientState;
Expand All @@ -745,6 +744,7 @@ public abstract interface class io/getstream/video/android/core/StreamVideo : io
}

public final class io/getstream/video/android/core/StreamVideo$Companion {
public final fun devToken (Ljava/lang/String;)Ljava/lang/String;
public final fun instance ()Lio/getstream/video/android/core/StreamVideo;
public final fun instanceOrNull ()Lio/getstream/video/android/core/StreamVideo;
public final fun isInstalled ()Z
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,14 +215,14 @@ public interface StreamVideo : NotificationHandler {
internalStreamVideo?.cleanup()
internalStreamVideo = null
}
}

/**
* Generate a developer token that can be used to connect users while the app is using a development environment.
*
* @param userId the desired id of the user to be connected.
*/
public fun devToken(userId: String): String = TokenUtils.devToken(userId)
/**
* Generate a developer token that can be used to connect users while the app is using a development environment.
*
* @param userId the desired id of the user to be connected.
*/
public fun devToken(userId: String): String = TokenUtils.devToken(userId)
}

public fun cleanup()
}
Expand Down

0 comments on commit 898fdf0

Please sign in to comment.