├── .fvm └── fvm_config.json ├── .github └── workflows │ ├── ci.yml │ ├── publish-docs.yml │ └── publish.yml ├── .gitignore ├── CONTRIBUTION.md ├── LICENSES └── LICENSE ├── README.md ├── courier_dart_sdk ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── gojek │ │ └── courier │ │ └── courier_dart_sdk │ │ ├── CourierDartSdkPlugin.kt │ │ └── internal │ │ ├── MqttClientDelegate.kt │ │ ├── event │ │ └── MqttEventHandler.kt │ │ ├── extensions │ │ └── IntExtensions.kt │ │ └── retrypolicy │ │ └── ConnectRetryPolicy.kt ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ ├── AuthFailureHandler.swift │ │ ├── AuthService.swift │ │ ├── CourierClientDelegate.swift │ │ ├── CourierDartSdkPlugin.h │ │ ├── CourierDartSdkPlugin.m │ │ ├── CourierMessage.swift │ │ ├── EventHandler.swift │ │ ├── MQTTChuckView.swift │ │ ├── MessageListener.swift │ │ └── SwiftCourierDartSdkPlugin.swift │ └── courier_dart_sdk.podspec ├── lib │ ├── auth │ │ ├── auth_provider.dart │ │ ├── auth_response_mapper.dart │ │ ├── auth_retry_policy.dart │ │ ├── cache_auth_provider.dart │ │ ├── default_auth_retry_policy.dart │ │ └── dio_auth_provider.dart │ ├── chuck │ │ └── mqtt_chuck_view.dart │ ├── config │ │ ├── connect_retry_policy_config.dart │ │ ├── connect_timeout_config.dart │ │ └── courier_configuration.dart │ ├── connection_state.dart │ ├── courier_client.dart │ ├── courier_connect_info.dart │ ├── courier_connect_options.dart │ ├── courier_message.dart │ ├── event │ │ ├── courier_event.dart │ │ └── courier_event_handler.dart │ └── message_adapter │ │ ├── bytes_message_adapter.dart │ │ ├── json_message_adapter.dart │ │ ├── message_adapter.dart │ │ └── string_message_adapter.dart ├── pubspec.yaml └── test │ └── courier_sdk_test.dart ├── courier_dart_sdk_demo ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── gojek │ │ │ │ │ └── courier │ │ │ │ │ └── courier_dart_sdk_demo │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── CourierCore │ │ │ ├── CourierCore │ │ │ │ ├── Connection │ │ │ │ │ └── IConnectionServiceProvider.swift │ │ │ │ ├── CourierClient.swift │ │ │ │ ├── Events │ │ │ │ │ ├── CourierEvent.swift │ │ │ │ │ ├── CourierEventManager.swift │ │ │ │ │ └── ICourierEventHandler.swift │ │ │ │ ├── Internal │ │ │ │ │ ├── Helpers │ │ │ │ │ │ └── Constants.swift │ │ │ │ │ └── Reactive.swift │ │ │ │ └── Models │ │ │ │ │ ├── AuthError.swift │ │ │ │ │ ├── ConnectOptions.swift │ │ │ │ │ ├── ConnectionState.swift │ │ │ │ │ ├── CourierError.swift │ │ │ │ │ ├── Message.swift │ │ │ │ │ └── QoS.swift │ │ │ └── README.md │ │ ├── CourierMQTT │ │ │ ├── CourierMQTT │ │ │ │ ├── CourierMQTT-Bridging-Header.h │ │ │ │ ├── MQTT │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ └── IMQTTClientFactory.swift │ │ │ │ │ │ ├── IMQTTClient.swift │ │ │ │ │ │ └── MQTTClient.swift │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── IMQTTConfiguration.swift │ │ │ │ │ │ └── MQTTConfiguration.swift │ │ │ │ │ ├── Connection │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ └── IMQTTConnectionFactory.swift │ │ │ │ │ │ ├── IMQTTConnection.swift │ │ │ │ │ │ └── MQTT-Client-Framework │ │ │ │ │ │ │ ├── IMQTTClientFrameworkFactory.swift │ │ │ │ │ │ │ ├── IMQTTPersistence.swift │ │ │ │ │ │ │ ├── IMQTTSession.swift │ │ │ │ │ │ │ ├── MQTTClientFrameworkConnection.swift │ │ │ │ │ │ │ ├── MQTTClientFrameworkSessionManager.swift │ │ │ │ │ │ │ ├── MQTTClientFrramework+Extension.swift │ │ │ │ │ │ │ ├── MQTTCommandType+Extension.swift │ │ │ │ │ │ │ └── MQTTSessionEvent+Extension.swift │ │ │ │ │ ├── ConnectionState+MQTT.swift │ │ │ │ │ ├── CourierClientFactory.swift │ │ │ │ │ ├── Date+Extension.swift │ │ │ │ │ ├── Error │ │ │ │ │ │ └── MQTTError.swift │ │ │ │ │ ├── Event │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ └── ICourierEventHandlerFactory.swift │ │ │ │ │ │ └── MulticastCourierEventHandler.swift │ │ │ │ │ ├── Handler │ │ │ │ │ │ └── IAuthFailureHandler.swift │ │ │ │ │ ├── KeepAlive │ │ │ │ │ │ └── KeepAliveFailureHandler.swift │ │ │ │ │ ├── MQTTChuck.swift │ │ │ │ │ ├── MQTTCourierClient+EventHandler.swift │ │ │ │ │ ├── MQTTCourierClient.swift │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── Adapters │ │ │ │ │ │ │ ├── DataMessageAdapter.swift │ │ │ │ │ │ │ ├── JSONMessageAdapter.swift │ │ │ │ │ │ │ ├── MessageAdapter.swift │ │ │ │ │ │ │ ├── PlistMessageAdapter.swift │ │ │ │ │ │ │ └── TextMessageAdapter.swift │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ └── IMessageReceiverListenerFactory.swift │ │ │ │ │ │ ├── IMessageReceiveListener.swift │ │ │ │ │ │ ├── IncomingMessagePersistence.swift │ │ │ │ │ │ ├── MQTTMessageReceiveListener.swift │ │ │ │ │ │ └── MessageAdaptersCoordinator.swift │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ConnectionConfig.swift │ │ │ │ │ │ └── MQTTPacket.swift │ │ │ │ │ ├── Policies │ │ │ │ │ │ ├── AuthRetryPolicy.swift │ │ │ │ │ │ ├── ConnectRetryTimePolicy.swift │ │ │ │ │ │ ├── IAuthRetryPolicy.swift │ │ │ │ │ │ ├── IConnectRetryTimeoutPolicy.swift │ │ │ │ │ │ ├── IConnectTimeoutPolicy.swift │ │ │ │ │ │ └── IdleActivityTimeoutPolicy.swift │ │ │ │ │ └── Subscriptions │ │ │ │ │ │ ├── DiskSubscriptionStore.swift │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ └── ISubscriptionStoreFactory.swift │ │ │ │ │ │ └── ISubscriptionStore.swift │ │ │ │ ├── Publishers │ │ │ │ │ ├── AnyCancellable.swift │ │ │ │ │ └── Publisher.swift │ │ │ │ ├── Reactive │ │ │ │ │ ├── Cancellable.swift │ │ │ │ │ └── RxSwift │ │ │ │ │ │ ├── AnyObserver.swift │ │ │ │ │ │ ├── Cancelable.swift │ │ │ │ │ │ ├── Concurrency │ │ │ │ │ │ ├── AsyncLock.swift │ │ │ │ │ │ ├── Lock.swift │ │ │ │ │ │ ├── LockOwnerType.swift │ │ │ │ │ │ ├── SynchronizedDisposeType.swift │ │ │ │ │ │ ├── SynchronizedOnType.swift │ │ │ │ │ │ └── SynchronizedUnsubscribeType.swift │ │ │ │ │ │ ├── Date+Dispatch.swift │ │ │ │ │ │ ├── Disposable.swift │ │ │ │ │ │ ├── Disposables │ │ │ │ │ │ ├── AnonymousDisposable.swift │ │ │ │ │ │ ├── BinaryDisposable.swift │ │ │ │ │ │ ├── CompositeDisposable.swift │ │ │ │ │ │ ├── Disposables.swift │ │ │ │ │ │ ├── DisposeBag.swift │ │ │ │ │ │ ├── DisposeBase.swift │ │ │ │ │ │ ├── NopDisposable.swift │ │ │ │ │ │ ├── ScheduledDisposable.swift │ │ │ │ │ │ ├── SerialDisposable.swift │ │ │ │ │ │ ├── SingleAssignmentDisposable.swift │ │ │ │ │ │ └── SubscriptionDisposable.swift │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ ├── Event.swift │ │ │ │ │ │ ├── Extensions │ │ │ │ │ │ └── Bag+Rx.swift │ │ │ │ │ │ ├── ImmediateSchedulerType.swift │ │ │ │ │ │ ├── Infallible │ │ │ │ │ │ ├── Infallible+Operators.swift │ │ │ │ │ │ └── Infallible.swift │ │ │ │ │ │ ├── Observable.swift │ │ │ │ │ │ ├── ObservableConvertibleType.swift │ │ │ │ │ │ ├── ObservableType+Extensions.swift │ │ │ │ │ │ ├── ObservableType.swift │ │ │ │ │ │ ├── Observables │ │ │ │ │ │ ├── Catch.swift │ │ │ │ │ │ ├── CompactMap.swift │ │ │ │ │ │ ├── Create.swift │ │ │ │ │ │ ├── Debug.swift │ │ │ │ │ │ ├── Do.swift │ │ │ │ │ │ ├── Empty.swift │ │ │ │ │ │ ├── Error.swift │ │ │ │ │ │ ├── Filter.swift │ │ │ │ │ │ ├── Just.swift │ │ │ │ │ │ ├── Map.swift │ │ │ │ │ │ ├── Merge.swift │ │ │ │ │ │ ├── ObserveOn.swift │ │ │ │ │ │ ├── Producer.swift │ │ │ │ │ │ ├── Sink.swift │ │ │ │ │ │ ├── SubscribeOn.swift │ │ │ │ │ │ └── Switch.swift │ │ │ │ │ │ ├── ObserverType.swift │ │ │ │ │ │ ├── Observers │ │ │ │ │ │ ├── AnonymousObservers.swift │ │ │ │ │ │ ├── ObserverBase.swift │ │ │ │ │ │ └── TailRecursiveSink.swift │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── AtomicInt.swift │ │ │ │ │ │ ├── DataStructures │ │ │ │ │ │ │ ├── Bag.swift │ │ │ │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ │ │ │ └── Queue.swift │ │ │ │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ │ │ │ ├── Platform.Darwin.swift │ │ │ │ │ │ └── RecursiveLock.swift │ │ │ │ │ │ ├── Rx.swift │ │ │ │ │ │ ├── RxMutableBox.swift │ │ │ │ │ │ ├── SchedulerType.swift │ │ │ │ │ │ ├── Schedulers │ │ │ │ │ │ ├── CurrentThreadScheduler.swift │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ │ │ │ │ ├── InvocableScheduledItem.swift │ │ │ │ │ │ │ ├── InvocableType.swift │ │ │ │ │ │ │ ├── ScheduledItem.swift │ │ │ │ │ │ │ └── ScheduledItemType.swift │ │ │ │ │ │ ├── MainScheduler.swift │ │ │ │ │ │ ├── RecursiveScheduler.swift │ │ │ │ │ │ ├── SchedulerServices+Emulation.swift │ │ │ │ │ │ └── SerialDispatchQueueScheduler.swift │ │ │ │ │ │ ├── Subjects │ │ │ │ │ │ ├── BehaviorSubject.swift │ │ │ │ │ │ ├── PublishSubject.swift │ │ │ │ │ │ └── SubjectType.swift │ │ │ │ │ │ ├── SwiftSupport │ │ │ │ │ │ └── SwiftSupport.swift │ │ │ │ │ │ └── Traits │ │ │ │ │ │ └── PrimitveSequence │ │ │ │ │ │ └── PrimitiveSequence.swift │ │ │ │ └── Utils │ │ │ │ │ ├── Atomic.swift │ │ │ │ │ ├── Debouncer.swift │ │ │ │ │ ├── MulticastDelegate.swift │ │ │ │ │ └── PrintDebug.swift │ │ │ └── README.md │ │ ├── CourierMQTTChuck │ │ │ ├── CourierMQTTChuck │ │ │ │ ├── MQTTChuckLog.swift │ │ │ │ ├── MQTTChuckLogger.swift │ │ │ │ ├── MQTTChuckView.swift │ │ │ │ └── MQTTChuckViewModel.swift │ │ │ └── README.md │ │ ├── Local Podspecs │ │ │ ├── Flutter.podspec.json │ │ │ ├── courier_dart_sdk.podspec.json │ │ │ └── permission_handler_apple.podspec.json │ │ ├── MQTTClientGJ │ │ │ ├── Internal │ │ │ │ └── MQTT-Client-Framework │ │ │ │ │ └── MQTTClientGJ │ │ │ │ │ └── MQTTClientGJ │ │ │ │ │ ├── GCDTimer.h │ │ │ │ │ ├── GCDTimer.m │ │ │ │ │ ├── MQTTCFSocketDecoder.h │ │ │ │ │ ├── MQTTCFSocketDecoder.m │ │ │ │ │ ├── MQTTCFSocketEncoder.h │ │ │ │ │ ├── MQTTCFSocketEncoder.m │ │ │ │ │ ├── MQTTCFSocketTransport.h │ │ │ │ │ ├── MQTTCFSocketTransport.m │ │ │ │ │ ├── MQTTCoreDataPersistence.h │ │ │ │ │ ├── MQTTCoreDataPersistence.m │ │ │ │ │ ├── MQTTDecoder.h │ │ │ │ │ ├── MQTTDecoder.m │ │ │ │ │ ├── MQTTInMemoryPersistence.h │ │ │ │ │ ├── MQTTInMemoryPersistence.m │ │ │ │ │ ├── MQTTLog.h │ │ │ │ │ ├── MQTTLog.m │ │ │ │ │ ├── MQTTMessage.h │ │ │ │ │ ├── MQTTMessage.m │ │ │ │ │ ├── MQTTPersistence.h │ │ │ │ │ ├── MQTTProperties.h │ │ │ │ │ ├── MQTTProperties.m │ │ │ │ │ ├── MQTTSSLSecurityPolicy.h │ │ │ │ │ ├── MQTTSSLSecurityPolicy.m │ │ │ │ │ ├── MQTTSSLSecurityPolicyDecoder.h │ │ │ │ │ ├── MQTTSSLSecurityPolicyDecoder.m │ │ │ │ │ ├── MQTTSSLSecurityPolicyEncoder.h │ │ │ │ │ ├── MQTTSSLSecurityPolicyEncoder.m │ │ │ │ │ ├── MQTTSSLSecurityPolicyTransport.h │ │ │ │ │ ├── MQTTSSLSecurityPolicyTransport.m │ │ │ │ │ ├── MQTTSession.h │ │ │ │ │ ├── MQTTSession.m │ │ │ │ │ ├── MQTTSessionLegacy.h │ │ │ │ │ ├── MQTTSessionLegacy.m │ │ │ │ │ ├── MQTTSessionManager.h │ │ │ │ │ ├── MQTTStrict.h │ │ │ │ │ ├── MQTTStrict.m │ │ │ │ │ ├── MQTTTransport.h │ │ │ │ │ ├── MQTTTransport.m │ │ │ │ │ ├── ReconnectTimer.h │ │ │ │ │ └── ReconnectTimer.m │ │ │ └── README.md │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ReachabilitySwift │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ └── Reachability.swift │ │ └── Target Support Files │ │ │ ├── CourierCore │ │ │ ├── CourierCore-Info.plist │ │ │ ├── CourierCore-dummy.m │ │ │ ├── CourierCore-prefix.pch │ │ │ ├── CourierCore-umbrella.h │ │ │ ├── CourierCore.debug.xcconfig │ │ │ ├── CourierCore.modulemap │ │ │ └── CourierCore.release.xcconfig │ │ │ ├── CourierMQTT │ │ │ ├── CourierMQTT-Info.plist │ │ │ ├── CourierMQTT-dummy.m │ │ │ ├── CourierMQTT-prefix.pch │ │ │ ├── CourierMQTT-umbrella.h │ │ │ ├── CourierMQTT.debug.xcconfig │ │ │ ├── CourierMQTT.modulemap │ │ │ └── CourierMQTT.release.xcconfig │ │ │ ├── CourierMQTTChuck │ │ │ ├── CourierMQTTChuck-Info.plist │ │ │ ├── CourierMQTTChuck-dummy.m │ │ │ ├── CourierMQTTChuck-prefix.pch │ │ │ ├── CourierMQTTChuck-umbrella.h │ │ │ ├── CourierMQTTChuck.debug.xcconfig │ │ │ ├── CourierMQTTChuck.modulemap │ │ │ └── CourierMQTTChuck.release.xcconfig │ │ │ ├── Flutter │ │ │ ├── Flutter.debug.xcconfig │ │ │ └── Flutter.release.xcconfig │ │ │ ├── MQTTClientGJ │ │ │ ├── MQTTClientGJ-Info.plist │ │ │ ├── MQTTClientGJ-dummy.m │ │ │ ├── MQTTClientGJ-prefix.pch │ │ │ ├── MQTTClientGJ-umbrella.h │ │ │ ├── MQTTClientGJ.debug.xcconfig │ │ │ ├── MQTTClientGJ.modulemap │ │ │ └── MQTTClientGJ.release.xcconfig │ │ │ ├── Pods-Runner │ │ │ ├── Pods-Runner-Info.plist │ │ │ ├── Pods-Runner-acknowledgements.markdown │ │ │ ├── Pods-Runner-acknowledgements.plist │ │ │ ├── Pods-Runner-dummy.m │ │ │ ├── Pods-Runner-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Profile-input-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Profile-output-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks.sh │ │ │ ├── Pods-Runner-umbrella.h │ │ │ ├── Pods-Runner.debug.xcconfig │ │ │ ├── Pods-Runner.modulemap │ │ │ ├── Pods-Runner.profile.xcconfig │ │ │ └── Pods-Runner.release.xcconfig │ │ │ ├── ReachabilitySwift │ │ │ ├── ReachabilitySwift-Info.plist │ │ │ ├── ReachabilitySwift-dummy.m │ │ │ ├── ReachabilitySwift-prefix.pch │ │ │ ├── ReachabilitySwift-umbrella.h │ │ │ ├── ReachabilitySwift.debug.xcconfig │ │ │ ├── ReachabilitySwift.modulemap │ │ │ └── ReachabilitySwift.release.xcconfig │ │ │ ├── courier_dart_sdk │ │ │ ├── courier_dart_sdk-Info.plist │ │ │ ├── courier_dart_sdk-dummy.m │ │ │ ├── courier_dart_sdk-prefix.pch │ │ │ ├── courier_dart_sdk-umbrella.h │ │ │ ├── courier_dart_sdk.debug.xcconfig │ │ │ ├── courier_dart_sdk.modulemap │ │ │ └── courier_dart_sdk.release.xcconfig │ │ │ └── permission_handler_apple │ │ │ ├── permission_handler_apple-Info.plist │ │ │ ├── permission_handler_apple-dummy.m │ │ │ ├── permission_handler_apple-prefix.pch │ │ │ ├── permission_handler_apple-umbrella.h │ │ │ ├── permission_handler_apple.debug.xcconfig │ │ │ ├── permission_handler_apple.modulemap │ │ │ └── permission_handler_apple.release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ ├── RunnerDebug.entitlements │ │ ├── RunnerProfile.entitlements │ │ └── RunnerRelease.entitlements ├── lib │ ├── courier_response_mapper.dart │ ├── local_auth_provider.dart │ ├── main.dart │ ├── test_data_type.dart │ ├── test_person_data.dart │ ├── test_pet.pb.dart │ └── test_pet.pbjson.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart └── test_pet.proto ├── courier_protobuf ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ └── protobuf_message_adapter.dart └── pubspec.yaml ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── CONTRIBUTION.md │ ├── Configuring Client.md │ ├── Connection Lifeycle.md │ ├── Event Handling.md │ ├── Installation.md │ ├── Introduction.md │ ├── LICENSE.md │ ├── MQTT Chuck.md │ ├── Message QoS.md │ ├── Publish Message.md │ ├── Sample App.md │ ├── Setup Connection.md │ └── Subscribe & Receive Message.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── index.module.css └── static │ ├── .nojekyll │ └── img │ ├── courier-logo-full-black.svg │ ├── courier-logo-full-white.svg │ ├── courier-logo.ico │ ├── courier-logo.svg │ ├── courier.png │ ├── docusaurus.png │ ├── favicon.ico │ ├── flutter.svg │ ├── gojek-logo-white.png │ ├── lock.svg │ ├── logo.svg │ ├── mqtt-logo.svg │ ├── pattern.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg └── scripts ├── generate_changelog.sh └── release.sh /.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/.fvm/fvm_config.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSES/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/LICENSES/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/README.md -------------------------------------------------------------------------------- /courier_dart_sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/.gitignore -------------------------------------------------------------------------------- /courier_dart_sdk/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/.metadata -------------------------------------------------------------------------------- /courier_dart_sdk/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/.vscode/launch.json -------------------------------------------------------------------------------- /courier_dart_sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/CHANGELOG.md -------------------------------------------------------------------------------- /courier_dart_sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/LICENSE -------------------------------------------------------------------------------- /courier_dart_sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/README.md -------------------------------------------------------------------------------- /courier_dart_sdk/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/analysis_options.yaml -------------------------------------------------------------------------------- /courier_dart_sdk/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/.gitignore -------------------------------------------------------------------------------- /courier_dart_sdk/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/build.gradle -------------------------------------------------------------------------------- /courier_dart_sdk/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /courier_dart_sdk/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /courier_dart_sdk/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/gradlew -------------------------------------------------------------------------------- /courier_dart_sdk/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/gradlew.bat -------------------------------------------------------------------------------- /courier_dart_sdk/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'courier_dart_sdk' 2 | -------------------------------------------------------------------------------- /courier_dart_sdk/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/CourierDartSdkPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/CourierDartSdkPlugin.kt -------------------------------------------------------------------------------- /courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/MqttClientDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/MqttClientDelegate.kt -------------------------------------------------------------------------------- /courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/event/MqttEventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/event/MqttEventHandler.kt -------------------------------------------------------------------------------- /courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/extensions/IntExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/extensions/IntExtensions.kt -------------------------------------------------------------------------------- /courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/retrypolicy/ConnectRetryPolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/android/src/main/kotlin/com/gojek/courier/courier_dart_sdk/internal/retrypolicy/ConnectRetryPolicy.kt -------------------------------------------------------------------------------- /courier_dart_sdk/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/.gitignore -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/AuthFailureHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/AuthFailureHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/AuthService.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/CourierClientDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/CourierClientDelegate.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/CourierDartSdkPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/CourierDartSdkPlugin.h -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/CourierDartSdkPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/CourierDartSdkPlugin.m -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/CourierMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/CourierMessage.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/EventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/EventHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/MQTTChuckView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/MQTTChuckView.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/MessageListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/MessageListener.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/Classes/SwiftCourierDartSdkPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/Classes/SwiftCourierDartSdkPlugin.swift -------------------------------------------------------------------------------- /courier_dart_sdk/ios/courier_dart_sdk.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/ios/courier_dart_sdk.podspec -------------------------------------------------------------------------------- /courier_dart_sdk/lib/auth/auth_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/auth/auth_provider.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/auth/auth_response_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/auth/auth_response_mapper.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/auth/auth_retry_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/auth/auth_retry_policy.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/auth/cache_auth_provider.dart: -------------------------------------------------------------------------------- 1 | abstract class JsonCodable { 2 | Map toJson(); 3 | } 4 | -------------------------------------------------------------------------------- /courier_dart_sdk/lib/auth/default_auth_retry_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/auth/default_auth_retry_policy.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/auth/dio_auth_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/auth/dio_auth_provider.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/chuck/mqtt_chuck_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/chuck/mqtt_chuck_view.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/config/connect_retry_policy_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/config/connect_retry_policy_config.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/config/connect_timeout_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/config/connect_timeout_config.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/config/courier_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/config/courier_configuration.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/connection_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/connection_state.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/courier_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/courier_client.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/courier_connect_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/courier_connect_info.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/courier_connect_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/courier_connect_options.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/courier_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/courier_message.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/event/courier_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/event/courier_event.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/event/courier_event_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/event/courier_event_handler.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/message_adapter/bytes_message_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/message_adapter/bytes_message_adapter.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/message_adapter/json_message_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/message_adapter/json_message_adapter.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/message_adapter/message_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/message_adapter/message_adapter.dart -------------------------------------------------------------------------------- /courier_dart_sdk/lib/message_adapter/string_message_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/lib/message_adapter/string_message_adapter.dart -------------------------------------------------------------------------------- /courier_dart_sdk/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/pubspec.yaml -------------------------------------------------------------------------------- /courier_dart_sdk/test/courier_sdk_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk/test/courier_sdk_test.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/.gitignore -------------------------------------------------------------------------------- /courier_dart_sdk_demo/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/.metadata -------------------------------------------------------------------------------- /courier_dart_sdk_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/analysis_options.yaml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/.gitignore -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/build.gradle -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/kotlin/com/gojek/courier/courier_dart_sdk_demo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/kotlin/com/gojek/courier/courier_dart_sdk_demo/MainActivity.kt -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/build.gradle -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/gradle.properties -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /courier_dart_sdk_demo/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/android/settings.gradle -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/.gitignore -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Podfile -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Podfile.lock -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Connection/IConnectionServiceProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Connection/IConnectionServiceProvider.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/CourierClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/CourierClient.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Events/CourierEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Events/CourierEvent.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Events/CourierEventManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Events/CourierEventManager.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Events/ICourierEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Events/ICourierEventHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Internal/Helpers/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Internal/Helpers/Constants.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Internal/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Internal/Reactive.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/AuthError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/AuthError.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/ConnectOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/ConnectOptions.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/ConnectionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/ConnectionState.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/CourierError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/CourierError.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/Message.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/QoS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/CourierCore/Models/QoS.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierCore/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/CourierMQTT-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/CourierMQTT-Bridging-Header.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Client/Factory/IMQTTClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Client/Factory/IMQTTClientFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Client/IMQTTClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Client/IMQTTClient.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Client/MQTTClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Client/MQTTClient.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Configuration/IMQTTConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Configuration/IMQTTConfiguration.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Configuration/MQTTConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Configuration/MQTTConfiguration.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/Factory/IMQTTConnectionFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/Factory/IMQTTConnectionFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/IMQTTConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/IMQTTConnection.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/IMQTTClientFrameworkFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/IMQTTClientFrameworkFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/IMQTTPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/IMQTTPersistence.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/IMQTTSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/IMQTTSession.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTClientFrameworkConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTClientFrameworkConnection.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTClientFrameworkSessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTClientFrameworkSessionManager.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTClientFrramework+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTClientFrramework+Extension.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTCommandType+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTCommandType+Extension.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTSessionEvent+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Connection/MQTT-Client-Framework/MQTTSessionEvent+Extension.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/ConnectionState+MQTT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/ConnectionState+MQTT.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/CourierClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/CourierClientFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Date+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Date+Extension.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Error/MQTTError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Error/MQTTError.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Event/Factory/ICourierEventHandlerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Event/Factory/ICourierEventHandlerFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Event/MulticastCourierEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Event/MulticastCourierEventHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Handler/IAuthFailureHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Handler/IAuthFailureHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/KeepAlive/KeepAliveFailureHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/KeepAlive/KeepAliveFailureHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/MQTTChuck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/MQTTChuck.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/MQTTCourierClient+EventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/MQTTCourierClient+EventHandler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/MQTTCourierClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/MQTTCourierClient.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/DataMessageAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/DataMessageAdapter.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/JSONMessageAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/JSONMessageAdapter.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/MessageAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/MessageAdapter.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/PlistMessageAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/PlistMessageAdapter.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/TextMessageAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Adapters/TextMessageAdapter.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Factory/IMessageReceiverListenerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/Factory/IMessageReceiverListenerFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/IMessageReceiveListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/IMessageReceiveListener.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/IncomingMessagePersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/IncomingMessagePersistence.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/MQTTMessageReceiveListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/MQTTMessageReceiveListener.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/MessageAdaptersCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Message/MessageAdaptersCoordinator.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Models/ConnectionConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Models/ConnectionConfig.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Models/MQTTPacket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Models/MQTTPacket.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/AuthRetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/AuthRetryPolicy.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/ConnectRetryTimePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/ConnectRetryTimePolicy.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IAuthRetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IAuthRetryPolicy.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IConnectRetryTimeoutPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IConnectRetryTimeoutPolicy.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IConnectTimeoutPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IConnectTimeoutPolicy.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IdleActivityTimeoutPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Policies/IdleActivityTimeoutPolicy.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Subscriptions/DiskSubscriptionStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Subscriptions/DiskSubscriptionStore.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Subscriptions/Factory/ISubscriptionStoreFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Subscriptions/Factory/ISubscriptionStoreFactory.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Subscriptions/ISubscriptionStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/MQTT/Subscriptions/ISubscriptionStore.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Publishers/AnyCancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Publishers/AnyCancellable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Publishers/Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Publishers/Publisher.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/Cancellable.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Date+Dispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Date+Dispatch.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- 1 | struct Disposables { 2 | private init() {} 3 | } 4 | -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Errors.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Event.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Infallible/Infallible+Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Infallible/Infallible+Operators.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Infallible/Infallible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Infallible/Infallible.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observable.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Catch.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/CompactMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/CompactMap.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Create.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Debug.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Do.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Empty.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Error.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Filter.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Just.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Map.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Merge.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/ObserveOn.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Producer.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Sink.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/SubscribeOn.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observables/Switch.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observers/AnonymousObservers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observers/AnonymousObservers.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Rx.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/ScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/SwiftSupport/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/SwiftSupport/SwiftSupport.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Traits/PrimitveSequence/PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Reactive/RxSwift/Traits/PrimitveSequence/PrimitiveSequence.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/Atomic.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/Debouncer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/Debouncer.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/MulticastDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/MulticastDelegate.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/PrintDebug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/CourierMQTT/Utils/PrintDebug.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTT/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckLog.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckLogger.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckView.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/CourierMQTTChuck/MQTTChuckViewModel.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/CourierMQTTChuck/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Local Podspecs/Flutter.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Local Podspecs/Flutter.podspec.json -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Local Podspecs/courier_dart_sdk.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Local Podspecs/courier_dart_sdk.podspec.json -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Local Podspecs/permission_handler_apple.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Local Podspecs/permission_handler_apple.podspec.json -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/GCDTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/GCDTimer.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/GCDTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/GCDTimer.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketDecoder.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketDecoder.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketEncoder.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketEncoder.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketTransport.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCFSocketTransport.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCoreDataPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCoreDataPersistence.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCoreDataPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTCoreDataPersistence.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTDecoder.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTDecoder.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTInMemoryPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTInMemoryPersistence.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTInMemoryPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTInMemoryPersistence.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTLog.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTLog.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTMessage.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTMessage.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTPersistence.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTProperties.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTProperties.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicy.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyDecoder.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyDecoder.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyEncoder.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyEncoder.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyTransport.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSSLSecurityPolicyTransport.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSession.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSession.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSessionLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSessionLegacy.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSessionLegacy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSessionLegacy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTSessionManager.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTStrict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTStrict.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTStrict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTStrict.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTTransport.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/MQTTTransport.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/ReconnectTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/ReconnectTimer.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/ReconnectTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/Internal/MQTT-Client-Framework/MQTTClientGJ/MQTTClientGJ/ReconnectTimer.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/MQTTClientGJ/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/ReachabilitySwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/ReachabilitySwift/LICENSE -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/ReachabilitySwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/ReachabilitySwift/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/ReachabilitySwift/Sources/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/ReachabilitySwift/Sources/Reachability.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierCore/CourierCore.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTT/CourierMQTT.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/CourierMQTTChuck/CourierMQTTChuck.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Flutter/Flutter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Flutter/Flutter.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/MQTTClientGJ/MQTTClientGJ.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.markdown -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-input-files.xcfilelist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-output-files.xcfilelist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/courier_dart_sdk/courier_dart_sdk.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-dummy.m -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-umbrella.h -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple.debug.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple.modulemap -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple.release.xcconfig -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/Info.plist -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/RunnerDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/RunnerDebug.entitlements -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/RunnerProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/RunnerProfile.entitlements -------------------------------------------------------------------------------- /courier_dart_sdk_demo/ios/Runner/RunnerRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/ios/Runner/RunnerRelease.entitlements -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/courier_response_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/courier_response_mapper.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/local_auth_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/local_auth_provider.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/main.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/test_data_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/test_data_type.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/test_person_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/test_person_data.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/test_pet.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/test_pet.pb.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/lib/test_pet.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/lib/test_pet.pbjson.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/pubspec.lock -------------------------------------------------------------------------------- /courier_dart_sdk_demo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/pubspec.yaml -------------------------------------------------------------------------------- /courier_dart_sdk_demo/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/test/widget_test.dart -------------------------------------------------------------------------------- /courier_dart_sdk_demo/test_pet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_dart_sdk_demo/test_pet.proto -------------------------------------------------------------------------------- /courier_protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/.gitignore -------------------------------------------------------------------------------- /courier_protobuf/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/.metadata -------------------------------------------------------------------------------- /courier_protobuf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/CHANGELOG.md -------------------------------------------------------------------------------- /courier_protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/LICENSE -------------------------------------------------------------------------------- /courier_protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/README.md -------------------------------------------------------------------------------- /courier_protobuf/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/analysis_options.yaml -------------------------------------------------------------------------------- /courier_protobuf/lib/protobuf_message_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/lib/protobuf_message_adapter.dart -------------------------------------------------------------------------------- /courier_protobuf/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/courier_protobuf/pubspec.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/CONTRIBUTION.md -------------------------------------------------------------------------------- /docs/docs/Configuring Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Configuring Client.md -------------------------------------------------------------------------------- /docs/docs/Connection Lifeycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Connection Lifeycle.md -------------------------------------------------------------------------------- /docs/docs/Event Handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Event Handling.md -------------------------------------------------------------------------------- /docs/docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Installation.md -------------------------------------------------------------------------------- /docs/docs/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Introduction.md -------------------------------------------------------------------------------- /docs/docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/docs/MQTT Chuck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/MQTT Chuck.md -------------------------------------------------------------------------------- /docs/docs/Message QoS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Message QoS.md -------------------------------------------------------------------------------- /docs/docs/Publish Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Publish Message.md -------------------------------------------------------------------------------- /docs/docs/Sample App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Sample App.md -------------------------------------------------------------------------------- /docs/docs/Setup Connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Setup Connection.md -------------------------------------------------------------------------------- /docs/docs/Subscribe & Receive Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docs/Subscribe & Receive Message.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/courier-logo-full-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/courier-logo-full-black.svg -------------------------------------------------------------------------------- /docs/static/img/courier-logo-full-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/courier-logo-full-white.svg -------------------------------------------------------------------------------- /docs/static/img/courier-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/courier-logo.ico -------------------------------------------------------------------------------- /docs/static/img/courier-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/courier-logo.svg -------------------------------------------------------------------------------- /docs/static/img/courier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/courier.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/flutter.svg -------------------------------------------------------------------------------- /docs/static/img/gojek-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/gojek-logo-white.png -------------------------------------------------------------------------------- /docs/static/img/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/lock.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/mqtt-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/mqtt-logo.svg -------------------------------------------------------------------------------- /docs/static/img/pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/pattern.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /scripts/generate_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/scripts/generate_changelog.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gojek/courier-flutter/HEAD/scripts/release.sh --------------------------------------------------------------------------------