Skip to content

Commit

Permalink
Added Janus Event Data Classes
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacakakpo1 committed Mar 26, 2024
1 parent 48e6879 commit 5c50e19
Show file tree
Hide file tree
Showing 19 changed files with 196 additions and 161 deletions.
3 changes: 1 addition & 2 deletions androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,12 @@ android {
dependencies {
implementation(projects.shared)
implementation("org.jacoco:org.jacoco.agent:0.8.11:runtime")
implementation("org.jacoco:jacoco-maven-plugin:0.8.11")


implementation(libs.appcompat)
implementation(libs.material)
implementation(libs.constraintlayout)
implementation("com.github.team-telnyx:telnyx-meet-android-sdk:0.3.1@aar") {
implementation("com.github.team-telnyx:telnyx-meet-android-sdk:0.3.2@aar") {
isTransitive = true
}
implementation("androidx.core:core-ktx:+")
Expand Down
4 changes: 2 additions & 2 deletions iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- JanusMessageSDK (0.7.24)
- JanusMessageSDK (0.7.25)

DEPENDENCIES:
- JanusMessageSDK (from `../shared`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../shared"

SPEC CHECKSUMS:
JanusMessageSDK: e76862260037deafcfdfb13f6ac5b07754fd1de5
JanusMessageSDK: aa3b570c0f7e509cc8ec4c4d7491ea886dfc1bee

PODFILE CHECKSUM: 1e004fa731d7a04f3d9d5649deb94144c69121d3

Expand Down
2 changes: 1 addition & 1 deletion iosApp/Pods/Local Podspecs/JanusMessageSDK.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions iosApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

132 changes: 56 additions & 76 deletions iosApp/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shared/JanusMessageSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'JanusMessageSDK'
spec.version = '0.7.24'
spec.version = '0.7.25'
spec.homepage = 'https://github.com/team-telnyx/janus-message-sdk'
spec.source = { :http=> ''}
spec.authors = { 'Telnyx' => '[email protected]' }
Expand Down
2 changes: 1 addition & 1 deletion 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.24"
version = "0.7.25"

cocoapods {
summary = "Janus-message-sdk"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
package com.telnyx.janusmessagesdk


class AndroidPlatform : Platform {
override val name: String = "Android ${android.os.Build.VERSION.SDK_INT}"
}

actual fun getPlatform(): Platform = AndroidPlatform()
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@ import org.junit.Test

class AndroidGreetingTest {

@Test
fun testExample() {
assertTrue("Check Android is mentioned", Greeting().greet().contains("Android"))
}

}

This file was deleted.

This file was deleted.

Loading

0 comments on commit 5c50e19

Please sign in to comment.