expo-callkit-telecom 0.3.3 → 0.3.5

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.3.3"
2
+ ".": "0.3.5"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ All notable changes to `expo-callkit-telecom` are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.5](https://github.com/mfairley/expo-callkit-telecom/compare/v0.3.4...v0.3.5) (2026-05-18)
9
+
10
+
11
+ ### Documentation
12
+
13
+ * clean up keywords ([92560e1](https://github.com/mfairley/expo-callkit-telecom/commit/92560e1549e1367d5ac2619769ee41a2054df4f1))
14
+
15
+ ## [0.3.4](https://github.com/mfairley/expo-callkit-telecom/compare/v0.3.3...v0.3.4) (2026-05-17)
16
+
17
+
18
+ ### Documentation
19
+
20
+ * recommend wav audio format ([cdeed74](https://github.com/mfairley/expo-callkit-telecom/commit/cdeed74f38ee3072d6ab1382c8ec8ab019fa9403))
21
+
8
22
  ## [0.3.3](https://github.com/mfairley/expo-callkit-telecom/compare/v0.3.2...v0.3.3) (2026-05-17)
9
23
 
10
24
 
package/README.md CHANGED
@@ -89,12 +89,12 @@ With custom ringtone and dialtone:
89
89
  "expo-callkit-telecom",
90
90
  {
91
91
  "sounds": [
92
- "./assets/sounds/ringtone.caf",
93
- "./assets/sounds/dialtone.caf"
92
+ "./assets/sounds/ringtone.wav",
93
+ "./assets/sounds/dialtone.wav"
94
94
  ],
95
- "defaultRingtoneIos": "ringtone.caf",
96
- "defaultRingtoneAndroid": "ringtone.caf",
97
- "defaultDialtone": "dialtone.caf",
95
+ "defaultRingtoneIos": "ringtone.wav",
96
+ "defaultRingtoneAndroid": "ringtone.wav",
97
+ "defaultDialtone": "dialtone.wav",
98
98
  "incomingCallTimeout": 45,
99
99
  "outgoingCallTimeout": 60,
100
100
  "microphonePermission": "$(PRODUCT_NAME) needs the microphone to make calls."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-callkit-telecom",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "CallKit + Jetpack Core-Telecom for Expo / React Native — native call UI, VoIP push, LiveKit-friendly audio. A modern react-native-callkeep alternative.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -30,27 +30,17 @@
30
30
  "docs:preview": "vitepress preview docs"
31
31
  },
32
32
  "keywords": [
33
- "react-native",
34
- "expo",
35
- "expo-module",
36
33
  "callkit",
37
- "callkeep",
38
- "telecom",
39
34
  "core-telecom",
40
- "voip",
41
- "incoming-call",
42
- "native-calling",
43
- "webrtc",
44
- "livekit",
35
+ "androidx.core:core-telecom",
36
+ "expo-module",
37
+ "react-native",
38
+ "expo",
45
39
  "pushkit",
46
- "apns",
47
40
  "fcm",
48
- "expo-callkit",
49
- "expo-telecom",
50
- "expo-voip",
51
- "react-native-callkit",
52
- "react-native-telecom",
53
- "react-native-voip"
41
+ "voip",
42
+ "webrtc",
43
+ "livekit"
54
44
  ],
55
45
  "repository": {
56
46
  "type": "git",
@@ -34,7 +34,7 @@ export type ExpoCallKitTelecomPluginProps = {
34
34
  /**
35
35
  * Array of sound file paths (relative to project root) to include in the app.
36
36
  * These files will be copied into the iOS bundle and Android raw resources.
37
- * Supported formats: .caf, .aiff, .wav (max 30 seconds for CallKit ringtones).
37
+ * .wav recommended
38
38
  * @platform ios
39
39
  * @platform android
40
40
  */
@@ -39,7 +39,7 @@ export type ExpoCallKitTelecomPluginProps = {
39
39
  /**
40
40
  * Array of sound file paths (relative to project root) to include in the app.
41
41
  * These files will be copied into the iOS bundle and Android raw resources.
42
- * Supported formats: .caf, .aiff, .wav (max 30 seconds for CallKit ringtones).
42
+ * .wav recommended
43
43
  * @platform ios
44
44
  * @platform android
45
45
  */