Skip to content

Commit

Permalink
Version Update
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacakakpo1 committed Apr 7, 2024
1 parent 36e6b78 commit 1193556
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 348 deletions.
5 changes: 0 additions & 5 deletions jitpack.yml

This file was deleted.

292 changes: 0 additions & 292 deletions pom.xml

This file was deleted.

16 changes: 2 additions & 14 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ kotlin {
iosSimulatorArm64()


version = "0.7.29"
version = "0.7.30"

cocoapods {
summary = "Janus-message-sdk"
Expand Down Expand Up @@ -186,19 +186,7 @@ fun Project.procRunFailLog(vararg params: String):List<String>{


publishing {
publications {

create<MavenPublication>("maven") {
run {
groupId = "com.telnyx"
artifactId = this@Build_gradle.getArtifactId()
version = getVersionName()
artifact(tasks["sourceJar"])
}
pom {
}
}
}


repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,8 @@ data class Accept(
@SerialName("handle_id")
var handleId: Long = 0

fun default(handleId: Long, body: CallBody, jsep: Jsep, sessionId: Long): Call {
return Call(
body = body,
jsep = jsep
).apply {
fun default(handleId: Long, sessionId: Long): Accept {
return this.apply {
this.handleId = handleId
janus = Janus.MESSAGE.value
this.sessionId = sessionId
Expand Down Expand Up @@ -63,11 +60,8 @@ data class Call(
@SerialName("handle_id")
var handleId: Long = 0

fun default(handleId: Long, body: CallBody, jsep: Jsep, sessionId: Long): Call {
return Call(
body = body,
jsep = jsep
).apply {
fun default(handleId: Long, sessionId: Long): Call {
return this.apply {
this.handleId = handleId
janus = Janus.MESSAGE.value
this.sessionId = sessionId
Expand Down
Loading

0 comments on commit 1193556

Please sign in to comment.