edoctor-sendbird-calls 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,11 +15,9 @@ buildscript {
15
15
  }
16
16
  }
17
17
 
18
-
19
18
  apply plugin: "com.android.library"
20
19
  apply plugin: "kotlin-android"
21
20
 
22
-
23
21
  def getExtOrIntegerDefault(name) {
24
22
  return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["EdoctorSendbirdCalls_" + name]).toInteger()
25
23
  }
@@ -35,7 +33,7 @@ def supportsNamespace() {
35
33
 
36
34
  android {
37
35
  if (supportsNamespace()) {
38
- namespace "com.edoctorsendbirdcalls"
36
+ namespace "com.rnsendbirdcalls"
39
37
 
40
38
  sourceSets {
41
39
  main {
@@ -77,6 +75,5 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
77
75
  dependencies {
78
76
  implementation "com.facebook.react:react-android"
79
77
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
80
- implementation 'com.sendbird.sdk:sendbird-calls:1.9.0'
81
- }
82
-
78
+ implementation 'com.sendbird.sdk:sendbird-calls:1.12.3'
79
+ }
@@ -1,5 +1,5 @@
1
1
  EdoctorSendbirdCalls_kotlinVersion=2.0.21
2
2
  EdoctorSendbirdCalls_minSdkVersion=24
3
- EdoctorSendbirdCalls_targetSdkVersion=34
3
+ EdoctorSendbirdCalls_targetSdkVersion=35
4
4
  EdoctorSendbirdCalls_compileSdkVersion=35
5
5
  EdoctorSendbirdCalls_ndkVersion=27.1.12297006
@@ -1,5 +1,5 @@
1
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
- package="com.edoctorsendbirdcalls">
2
+ package="com.rnsendbirdcalls">
3
3
 
4
4
  <uses-permission android:name="android.permission.VIBRATE"/>
5
5
  <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
@@ -172,6 +172,13 @@ public class RNSendBirdCallsModule extends ReactContextBaseJavaModule {
172
172
  IS_SEND_EVENT_RINGING = true;
173
173
  }
174
174
  }
175
+
176
+ @Override
177
+ public void onInvitationReceived(@NotNull com.sendbird.calls.RoomInvitation roomInvitation) {
178
+ Log.i(TAG, "onInvitationReceived");
179
+ // Handle room invitation if needed
180
+ // This method is required by the SendBirdCallListener interface
181
+ }
175
182
  });
176
183
 
177
184
  String UNIQUE_ID = UUID.randomUUID().toString();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edoctor-sendbird-calls",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "edoctor-sendbird-calls",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./lib/module/index.js",