rns-nativecall 0.7.7 → 0.7.9

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.
@@ -11,10 +11,10 @@ import android.media.Ringtone
11
11
  import android.media.RingtoneManager
12
12
  import android.graphics.Color
13
13
 
14
- import androidx.core.app.Person
15
-
16
14
  import android.app.KeyguardManager
17
15
 
16
+ import com.rnsnativecall.CallMessagingService
17
+
18
18
  object NativeCallManager {
19
19
 
20
20
  private var ringtone: Ringtone? = null
@@ -28,7 +28,7 @@ object NativeCallManager {
28
28
  val callType = data["callType"] ?: "audio"
29
29
  val notificationId = uuid.hashCode()
30
30
 
31
-
31
+
32
32
 
33
33
 
34
34
  // --- LOCK SCREEN GATEKEEPER ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rns-nativecall",
3
- "version": "0.7.7",
3
+ "version": "0.7.9",
4
4
  "description": "High-performance React Native module for handling native VoIP call UI on Android and iOS.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -35,10 +35,11 @@
35
35
  "withNativeCallVoip.js"
36
36
  ],
37
37
  "peerDependencies": {
38
- "react-native": ">=0.60.0",
39
- "expo": ">=45.0.0"
38
+ "expo": ">=45.0.0",
39
+ "react-native": ">=0.60.0"
40
40
  },
41
41
  "dependencies": {
42
- "@expo/config-plugins": "^9.0.0"
42
+ "@expo/config-plugins": "^9.0.0",
43
+ "rns-nativecall": "^0.7.8"
43
44
  }
44
45
  }