rns-nativecall 1.1.7 → 1.1.8
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.
|
@@ -117,6 +117,14 @@ object NativeCallManager {
|
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
+
fun refreshNotificationOnly(
|
|
121
|
+
context: Context,
|
|
122
|
+
uuid: String,
|
|
123
|
+
) {
|
|
124
|
+
val manager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
|
125
|
+
manager.cancel(uuid.hashCode())
|
|
126
|
+
}
|
|
127
|
+
|
|
120
128
|
fun dismissIncomingCall(
|
|
121
129
|
context: Context,
|
|
122
130
|
uuid: String?,
|