-
Notifications
You must be signed in to change notification settings - Fork 0
rename project source files from jellyfish to fishjam #18
Conversation
FishjamClient/build.gradle
Outdated
id 'maven-publish' | ||
|
||
id "kotlin-android" | ||
} | ||
|
||
android { | ||
namespace 'com.jellyfishdev.jellyfishclient' | ||
namespace 'com.fishjam.client' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as we are still using fishjam-dev org, maybe we can stick with com.fishjamdev.client
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -12,15 +12,15 @@ import org.membraneframework.rtc.models.RTCStats | |||
import org.membraneframework.rtc.utils.Metadata | |||
import org.webrtc.Logging | |||
|
|||
typealias TrackContext = JellyfishTrackContext | |||
typealias TrackContext = FishjamTrackContext |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(as part of other PR - I would check if FishjamTrackContext can be removed, as it happened on iOS version)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had that in mind. I ticket created.
.build() | ||
sendEvent(mediaEvent) | ||
} | ||
|
||
override fun onTrackAdded(ctx: TrackContext) { | ||
val trackContext = TrackContext(ctx) | ||
var trackContext = TrackContext(ctx) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this change? trackContext
is never updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ktlint ( not sure why ).
import org.webrtc.EglBase | ||
import org.webrtc.audio.AudioDeviceModule | ||
|
||
internal interface MembraneRTCComponent { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this file still required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, merge from main pulled this file. Deleted.
@@ -1,7 +1,7 @@ | |||
package jellyfishdev.jellyfishclient | |||
package fishjamdev.fishjamclient |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
package fishjamdev.fishjamclient | |
package fishjamdev.client |
(to partially match code package name)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍍
No description provided.