File tree 2 files changed +3
-3
lines changed
android/app/src/main/kotlin/com/zulip/flutter
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ data class StoredNotificationSound (
381
381
)
382
382
}
383
383
}
384
- private open class NotificationsPigeonCodec : StandardMessageCodec () {
384
+ private open class AndroidNotificationsPigeonCodec : StandardMessageCodec () {
385
385
override fun readValueOfType (type : Byte , buffer : ByteBuffer ): Any? {
386
386
return when (type) {
387
387
129 .toByte() -> {
@@ -589,7 +589,7 @@ interface AndroidNotificationHostApi {
589
589
companion object {
590
590
/* * The codec used by AndroidNotificationHostApi. */
591
591
val codec: MessageCodec <Any ?> by lazy {
592
- NotificationsPigeonCodec ()
592
+ AndroidNotificationsPigeonCodec ()
593
593
}
594
594
/* * Sets up an instance of `AndroidNotificationHostApi` to handle messages through the `binaryMessenger`. */
595
595
@JvmOverloads
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import 'package:pigeon/pigeon.dart';
4
4
// run `tools/check pigeon --fix`.
5
5
@ConfigurePigeon (PigeonOptions (
6
6
dartOut: 'lib/host/android_notifications.g.dart' ,
7
- kotlinOut: 'android/app/src/main/kotlin/com/zulip/flutter/Notifications .g.kt' ,
7
+ kotlinOut: 'android/app/src/main/kotlin/com/zulip/flutter/AndroidNotifications .g.kt' ,
8
8
kotlinOptions: KotlinOptions (package: 'com.zulip.flutter' ),
9
9
))
10
10
You can’t perform that action at this time.
0 commit comments