Skip to content

Commit

Permalink
Add Push to Cocoapods task
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacakakpo1 committed Mar 10, 2024
1 parent bb1008d commit 9fdacd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ plugins {
id("co.touchlab.kmmbridge") version "0.5.2"
id("maven-publish")
}
version = "0.7.15"

kmmbridge {
mavenPublishArtifacts()
Expand Down Expand Up @@ -39,15 +38,16 @@ kotlin {
iosSimulatorArm64()


version = "0.7.17"

cocoapods {
summary = "Janus-message-sdk"
name = "JanusMessageSDK"
homepage = "https://github.com/team-telnyx/janus-message-sdk"
version = version.toString()
version = "${project.version}"
license = "{ :type => 'MIT', :file => 'LICENSE' }"
authors = "{ 'Telnyx' => '[email protected]' }"
source = "{ :http => 'https://github.com/team-telnyx/janus-message-sdk/releases/download/${version}/JanusMessageSdk.xcframework.zip', :type => 'zip' }"
source = "{ :http => 'https://github.com/team-telnyx/janus-message-sdk/releases/download/${project.version}/JanusMessageSdk.xcframework.zip', :type => 'zip' }"
ios.deploymentTarget = "14.1"
podfile = project.file("../iosApp/Podfile")
framework {
Expand Down

0 comments on commit 9fdacd2

Please sign in to comment.