rns-nativecall 1.0.5 → 1.0.6

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.
package/README.md CHANGED
@@ -12,7 +12,12 @@ A professional VoIP incoming call handler for React Native. Features a "Single C
12
12
  ## 📦 Installation
13
13
 
14
14
  ```bash
15
- npm install rns-nativecall
15
+ npx expo install rns-nativecall expo-build-properties
16
+
17
+ ```
18
+ or
19
+ ```bash
20
+ npm install rns-nativecall expo-build-properties
16
21
 
17
22
  ```
18
23
  ---
@@ -18,7 +18,7 @@ class CallForegroundService : Service() {
18
18
  private var unlockReceiver: UnlockReceiver? = null // Store reference for unregistering
19
19
 
20
20
  companion object {
21
- private const val CHANNEL_ID = "CALL_CHANNEL_V12_URGENT"
21
+ private const val CHANNEL_ID = "CALL_CHANNEL_V14_URGENT"
22
22
 
23
23
  fun stop(context: Context) {
24
24
  val intent = Intent(context, CallForegroundService::class.java)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rns-nativecall",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
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",