Fixed Location & Storage issues
This commit is contained in:
@ -0,0 +1,4 @@
|
||||
#import <Flutter/Flutter.h>
|
||||
|
||||
@interface ConnectivityPlusPlugin : NSObject <FlutterPlugin>
|
||||
@end
|
||||
@ -0,0 +1,342 @@
|
||||
#if 0
|
||||
#elif defined(__arm64__) && __arm64__
|
||||
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
|
||||
#ifndef CONNECTIVITY_PLUS_SWIFT_H
|
||||
#define CONNECTIVITY_PLUS_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wgcc-compat"
|
||||
|
||||
#if !defined(__has_include)
|
||||
# define __has_include(x) 0
|
||||
#endif
|
||||
#if !defined(__has_attribute)
|
||||
# define __has_attribute(x) 0
|
||||
#endif
|
||||
#if !defined(__has_feature)
|
||||
# define __has_feature(x) 0
|
||||
#endif
|
||||
#if !defined(__has_warning)
|
||||
# define __has_warning(x) 0
|
||||
#endif
|
||||
|
||||
#if __has_include(<swift/objc-prologue.h>)
|
||||
# include <swift/objc-prologue.h>
|
||||
#endif
|
||||
|
||||
#pragma clang diagnostic ignored "-Wauto-import"
|
||||
#if defined(__OBJC__)
|
||||
#include <Foundation/Foundation.h>
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
#include <cstdbool>
|
||||
#include <cstring>
|
||||
#include <stdlib.h>
|
||||
#include <new>
|
||||
#include <type_traits>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
|
||||
# include <ptrauth.h>
|
||||
#else
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
|
||||
# ifndef __ptrauth_swift_value_witness_function_pointer
|
||||
# define __ptrauth_swift_value_witness_function_pointer(x)
|
||||
# endif
|
||||
# ifndef __ptrauth_swift_class_method_pointer
|
||||
# define __ptrauth_swift_class_method_pointer(x)
|
||||
# endif
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !defined(SWIFT_TYPEDEFS)
|
||||
# define SWIFT_TYPEDEFS 1
|
||||
# if __has_include(<uchar.h>)
|
||||
# include <uchar.h>
|
||||
# elif !defined(__cplusplus)
|
||||
typedef uint_least16_t char16_t;
|
||||
typedef uint_least32_t char32_t;
|
||||
# endif
|
||||
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
||||
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
||||
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
||||
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
||||
#endif
|
||||
|
||||
#if !defined(SWIFT_PASTE)
|
||||
# define SWIFT_PASTE_HELPER(x, y) x##y
|
||||
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
||||
#endif
|
||||
#if !defined(SWIFT_METATYPE)
|
||||
# define SWIFT_METATYPE(X) Class
|
||||
#endif
|
||||
#if !defined(SWIFT_CLASS_PROPERTY)
|
||||
# if __has_feature(objc_class_property)
|
||||
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
||||
# else
|
||||
# define SWIFT_CLASS_PROPERTY(...)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_RUNTIME_NAME)
|
||||
# if __has_attribute(objc_runtime_name)
|
||||
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
||||
# else
|
||||
# define SWIFT_RUNTIME_NAME(X)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_COMPILE_NAME)
|
||||
# if __has_attribute(swift_name)
|
||||
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
||||
# else
|
||||
# define SWIFT_COMPILE_NAME(X)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_METHOD_FAMILY)
|
||||
# if __has_attribute(objc_method_family)
|
||||
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
||||
# else
|
||||
# define SWIFT_METHOD_FAMILY(X)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_NOESCAPE)
|
||||
# if __has_attribute(noescape)
|
||||
# define SWIFT_NOESCAPE __attribute__((noescape))
|
||||
# else
|
||||
# define SWIFT_NOESCAPE
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_RELEASES_ARGUMENT)
|
||||
# if __has_attribute(ns_consumed)
|
||||
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
||||
# else
|
||||
# define SWIFT_RELEASES_ARGUMENT
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_WARN_UNUSED_RESULT)
|
||||
# if __has_attribute(warn_unused_result)
|
||||
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
||||
# else
|
||||
# define SWIFT_WARN_UNUSED_RESULT
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_NORETURN)
|
||||
# if __has_attribute(noreturn)
|
||||
# define SWIFT_NORETURN __attribute__((noreturn))
|
||||
# else
|
||||
# define SWIFT_NORETURN
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_CLASS_EXTRA)
|
||||
# define SWIFT_CLASS_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
||||
# define SWIFT_PROTOCOL_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM_EXTRA)
|
||||
# define SWIFT_ENUM_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_CLASS)
|
||||
# if __has_attribute(objc_subclassing_restricted)
|
||||
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
||||
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
||||
# else
|
||||
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
||||
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_RESILIENT_CLASS)
|
||||
# if __has_attribute(objc_class_stub)
|
||||
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
||||
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
||||
# else
|
||||
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
||||
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_PROTOCOL)
|
||||
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
||||
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_EXTENSION)
|
||||
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
||||
#endif
|
||||
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
||||
# if __has_attribute(objc_designated_initializer)
|
||||
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
||||
# else
|
||||
# define OBJC_DESIGNATED_INITIALIZER
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM_ATTR)
|
||||
# if __has_attribute(enum_extensibility)
|
||||
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
||||
# else
|
||||
# define SWIFT_ENUM_ATTR(_extensibility)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM)
|
||||
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
||||
# if __has_feature(generalized_swift_name)
|
||||
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
||||
# else
|
||||
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_UNAVAILABLE)
|
||||
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
||||
#endif
|
||||
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
||||
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
||||
#endif
|
||||
#if !defined(SWIFT_AVAILABILITY)
|
||||
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
||||
#endif
|
||||
#if !defined(SWIFT_WEAK_IMPORT)
|
||||
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
||||
#endif
|
||||
#if !defined(SWIFT_DEPRECATED)
|
||||
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
||||
#endif
|
||||
#if !defined(SWIFT_DEPRECATED_MSG)
|
||||
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
||||
#endif
|
||||
#if !defined(SWIFT_DEPRECATED_OBJC)
|
||||
# if __has_feature(attribute_diagnose_if_objc)
|
||||
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
||||
# else
|
||||
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
||||
# endif
|
||||
#endif
|
||||
#if defined(__OBJC__)
|
||||
#if !defined(IBSegueAction)
|
||||
# define IBSegueAction
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(SWIFT_EXTERN)
|
||||
# if defined(__cplusplus)
|
||||
# define SWIFT_EXTERN extern "C"
|
||||
# else
|
||||
# define SWIFT_EXTERN extern
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_CALL)
|
||||
# define SWIFT_CALL __attribute__((swiftcall))
|
||||
#endif
|
||||
#if !defined(SWIFT_INDIRECT_RESULT)
|
||||
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
|
||||
#endif
|
||||
#if !defined(SWIFT_CONTEXT)
|
||||
# define SWIFT_CONTEXT __attribute__((swift_context))
|
||||
#endif
|
||||
#if !defined(SWIFT_ERROR_RESULT)
|
||||
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
# define SWIFT_NOEXCEPT noexcept
|
||||
#else
|
||||
# define SWIFT_NOEXCEPT
|
||||
#endif
|
||||
#if !defined(SWIFT_C_INLINE_THUNK)
|
||||
# if __has_attribute(always_inline)
|
||||
# if __has_attribute(nodebug)
|
||||
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
|
||||
# else
|
||||
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
|
||||
# endif
|
||||
# else
|
||||
# define SWIFT_C_INLINE_THUNK inline
|
||||
# endif
|
||||
#endif
|
||||
#if defined(_WIN32)
|
||||
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
|
||||
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
|
||||
# define SWIFT_IMPORT_STDLIB_SYMBOL
|
||||
#endif
|
||||
#endif
|
||||
#if defined(__OBJC__)
|
||||
#if __has_feature(objc_modules)
|
||||
#if __has_warning("-Watimport-in-framework-header")
|
||||
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
||||
#endif
|
||||
@import Flutter;
|
||||
@import ObjectiveC;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
||||
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
||||
#if __has_warning("-Wpragma-clang-attribute")
|
||||
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
||||
#endif
|
||||
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
||||
#pragma clang diagnostic ignored "-Wnullability"
|
||||
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
|
||||
|
||||
#if __has_attribute(external_source_symbol)
|
||||
# pragma push_macro("any")
|
||||
# undef any
|
||||
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="connectivity_plus",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
||||
# pragma pop_macro("any")
|
||||
#endif
|
||||
|
||||
#if defined(__OBJC__)
|
||||
|
||||
SWIFT_CLASS("_TtC17connectivity_plus31PathMonitorConnectivityProvider") SWIFT_AVAILABILITY(ios,introduced=12)
|
||||
@interface PathMonitorConnectivityProvider : NSObject
|
||||
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
||||
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
||||
@end
|
||||
|
||||
|
||||
SWIFT_CLASS("_TtC17connectivity_plus32ReachabilityConnectivityProvider")
|
||||
@interface ReachabilityConnectivityProvider : NSObject
|
||||
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
||||
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
||||
@end
|
||||
|
||||
@protocol FlutterPluginRegistrar;
|
||||
@class FlutterMethodCall;
|
||||
@class FlutterError;
|
||||
|
||||
SWIFT_CLASS("_TtC17connectivity_plus27SwiftConnectivityPlusPlugin")
|
||||
@interface SwiftConnectivityPlusPlugin : NSObject <FlutterPlugin, FlutterStreamHandler>
|
||||
+ (void)registerWithRegistrar:(id <FlutterPluginRegistrar> _Nonnull)registrar;
|
||||
- (void)detachFromEngineForRegistrar:(id <FlutterPluginRegistrar> _Nonnull)registrar;
|
||||
- (void)handleMethodCall:(FlutterMethodCall * _Nonnull)call result:(FlutterResult _Nonnull)result;
|
||||
- (FlutterError * _Nullable)onListenWithArguments:(id _Nullable)_ eventSink:(FlutterEventSink _Nonnull)events SWIFT_WARN_UNUSED_RESULT;
|
||||
- (FlutterError * _Nullable)onCancelWithArguments:(id _Nullable)_ SWIFT_WARN_UNUSED_RESULT;
|
||||
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
||||
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
||||
@end
|
||||
|
||||
#endif
|
||||
#if __has_attribute(external_source_symbol)
|
||||
# pragma clang attribute pop
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
#endif
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
#else
|
||||
#error unsupported Swift architecture
|
||||
#endif
|
||||
@ -0,0 +1,17 @@
|
||||
#ifdef __OBJC__
|
||||
#import <UIKit/UIKit.h>
|
||||
#else
|
||||
#ifndef FOUNDATION_EXPORT
|
||||
#if defined(__cplusplus)
|
||||
#define FOUNDATION_EXPORT extern "C"
|
||||
#else
|
||||
#define FOUNDATION_EXPORT extern
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#import "ConnectivityPlusPlugin.h"
|
||||
|
||||
FOUNDATION_EXPORT double connectivity_plusVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char connectivity_plusVersionString[];
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,61 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
|
||||
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name connectivity_plus
|
||||
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
||||
import Flutter
|
||||
import Foundation
|
||||
import Network
|
||||
import Reachability
|
||||
import Swift
|
||||
import _Concurrency
|
||||
import _StringProcessing
|
||||
import _SwiftConcurrencyShims
|
||||
@_exported import connectivity_plus
|
||||
public enum ConnectivityType {
|
||||
case none
|
||||
case wiredEthernet
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
public static func == (a: connectivity_plus.ConnectivityType, b: connectivity_plus.ConnectivityType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public protocol ConnectivityProvider : ObjectiveC.NSObjectProtocol {
|
||||
typealias ConnectivityUpdateHandler = (connectivity_plus.ConnectivityType) -> Swift.Void
|
||||
var currentConnectivityType: connectivity_plus.ConnectivityType { get }
|
||||
var connectivityUpdateHandler: Self.ConnectivityUpdateHandler? { get set }
|
||||
func start()
|
||||
func stop()
|
||||
}
|
||||
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 12, *)
|
||||
public class PathMonitorConnectivityProvider : ObjectiveC.NSObject, connectivity_plus.ConnectivityProvider {
|
||||
public var currentConnectivityType: connectivity_plus.ConnectivityType {
|
||||
get
|
||||
}
|
||||
public var connectivityUpdateHandler: connectivity_plus.PathMonitorConnectivityProvider.ConnectivityUpdateHandler?
|
||||
public func start()
|
||||
public func stop()
|
||||
@objc deinit
|
||||
}
|
||||
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ReachabilityConnectivityProvider : ObjectiveC.NSObject, connectivity_plus.ConnectivityProvider {
|
||||
public var currentConnectivityType: connectivity_plus.ConnectivityType {
|
||||
get
|
||||
}
|
||||
public var connectivityUpdateHandler: connectivity_plus.ReachabilityConnectivityProvider.ConnectivityUpdateHandler?
|
||||
public func start()
|
||||
public func stop()
|
||||
@objc deinit
|
||||
}
|
||||
@objc @_hasMissingDesignatedInitializers public class SwiftConnectivityPlusPlugin : ObjectiveC.NSObject, Flutter.FlutterPlugin, Flutter.FlutterStreamHandler {
|
||||
@objc public static func register(with registrar: any Flutter.FlutterPluginRegistrar)
|
||||
@objc public func detachFromEngine(for registrar: any Flutter.FlutterPluginRegistrar)
|
||||
@objc public func handle(_ call: Flutter.FlutterMethodCall, result: @escaping Flutter.FlutterResult)
|
||||
@objc public func onListen(withArguments _: Any?, eventSink events: @escaping Flutter.FlutterEventSink) -> Flutter.FlutterError?
|
||||
@objc public func onCancel(withArguments _: Any?) -> Flutter.FlutterError?
|
||||
@objc deinit
|
||||
}
|
||||
extension connectivity_plus.ConnectivityType : Swift.Equatable {}
|
||||
extension connectivity_plus.ConnectivityType : Swift.Hashable {}
|
||||
Binary file not shown.
@ -0,0 +1,61 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
|
||||
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name connectivity_plus
|
||||
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
||||
import Flutter
|
||||
import Foundation
|
||||
import Network
|
||||
import Reachability
|
||||
import Swift
|
||||
import _Concurrency
|
||||
import _StringProcessing
|
||||
import _SwiftConcurrencyShims
|
||||
@_exported import connectivity_plus
|
||||
public enum ConnectivityType {
|
||||
case none
|
||||
case wiredEthernet
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
public static func == (a: connectivity_plus.ConnectivityType, b: connectivity_plus.ConnectivityType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public protocol ConnectivityProvider : ObjectiveC.NSObjectProtocol {
|
||||
typealias ConnectivityUpdateHandler = (connectivity_plus.ConnectivityType) -> Swift.Void
|
||||
var currentConnectivityType: connectivity_plus.ConnectivityType { get }
|
||||
var connectivityUpdateHandler: Self.ConnectivityUpdateHandler? { get set }
|
||||
func start()
|
||||
func stop()
|
||||
}
|
||||
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 12, *)
|
||||
public class PathMonitorConnectivityProvider : ObjectiveC.NSObject, connectivity_plus.ConnectivityProvider {
|
||||
public var currentConnectivityType: connectivity_plus.ConnectivityType {
|
||||
get
|
||||
}
|
||||
public var connectivityUpdateHandler: connectivity_plus.PathMonitorConnectivityProvider.ConnectivityUpdateHandler?
|
||||
public func start()
|
||||
public func stop()
|
||||
@objc deinit
|
||||
}
|
||||
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ReachabilityConnectivityProvider : ObjectiveC.NSObject, connectivity_plus.ConnectivityProvider {
|
||||
public var currentConnectivityType: connectivity_plus.ConnectivityType {
|
||||
get
|
||||
}
|
||||
public var connectivityUpdateHandler: connectivity_plus.ReachabilityConnectivityProvider.ConnectivityUpdateHandler?
|
||||
public func start()
|
||||
public func stop()
|
||||
@objc deinit
|
||||
}
|
||||
@objc @_hasMissingDesignatedInitializers public class SwiftConnectivityPlusPlugin : ObjectiveC.NSObject, Flutter.FlutterPlugin, Flutter.FlutterStreamHandler {
|
||||
@objc public static func register(with registrar: any Flutter.FlutterPluginRegistrar)
|
||||
@objc public func detachFromEngine(for registrar: any Flutter.FlutterPluginRegistrar)
|
||||
@objc public func handle(_ call: Flutter.FlutterMethodCall, result: @escaping Flutter.FlutterResult)
|
||||
@objc public func onListen(withArguments _: Any?, eventSink events: @escaping Flutter.FlutterEventSink) -> Flutter.FlutterError?
|
||||
@objc public func onCancel(withArguments _: Any?) -> Flutter.FlutterError?
|
||||
@objc deinit
|
||||
}
|
||||
extension connectivity_plus.ConnectivityType : Swift.Equatable {}
|
||||
extension connectivity_plus.ConnectivityType : Swift.Hashable {}
|
||||
@ -0,0 +1,11 @@
|
||||
framework module connectivity_plus {
|
||||
umbrella header "connectivity_plus-umbrella.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
||||
|
||||
module connectivity_plus.Swift {
|
||||
header "connectivity_plus-Swift.h"
|
||||
requires objc
|
||||
}
|
||||
Binary file not shown.
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.xcode.dsym.org.cocoapods.connectivity-plus</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>dSYM</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.0.1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@ -0,0 +1,117 @@
|
||||
---
|
||||
triple: 'arm64-apple-darwin'
|
||||
binary-path: '/Volumes/PortableSSD1TB/main/GifuTabi/rog_app/Flutter/Release/iphoneos/Release-iphoneos/connectivity_plus/connectivity_plus.framework/connectivity_plus'
|
||||
relocations:
|
||||
- { offsetInCU: 0x34, offset: 0x5CC54, size: 0x8, addend: 0x0, symName: _connectivity_plusVersionString, symObjAddr: 0x0, symBinAddr: 0x8560, symSize: 0x0 }
|
||||
- { offsetInCU: 0x69, offset: 0x5CC89, size: 0x8, addend: 0x0, symName: _connectivity_plusVersionNumber, symObjAddr: 0x30, symBinAddr: 0x8590, symSize: 0x0 }
|
||||
- { offsetInCU: 0x27, offset: 0x5CCC6, size: 0x8, addend: 0x0, symName: '+[ConnectivityPlusPlugin registerWithRegistrar:]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0xC }
|
||||
- { offsetInCU: 0x91, offset: 0x5CD30, size: 0x8, addend: 0x0, symName: '+[ConnectivityPlusPlugin registerWithRegistrar:]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0xC }
|
||||
- { offsetInCU: 0x27, offset: 0x5CDC4, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x400C, symSize: 0x14 }
|
||||
- { offsetInCU: 0x4B, offset: 0x5CDE8, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x400C, symSize: 0x14 }
|
||||
- { offsetInCU: 0x7E, offset: 0x5CE1B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x14, symBinAddr: 0x4020, symSize: 0x28 }
|
||||
- { offsetInCU: 0x114, offset: 0x5CEB1, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeO9hashValueSivg', symObjAddr: 0x3C, symBinAddr: 0x4048, symSize: 0x44 }
|
||||
- { offsetInCU: 0x20E, offset: 0x5CFAB, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x80, symBinAddr: 0x408C, symSize: 0x14 }
|
||||
- { offsetInCU: 0x22E, offset: 0x5CFCB, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x80, symBinAddr: 0x408C, symSize: 0x14 }
|
||||
- { offsetInCU: 0x26E, offset: 0x5D00B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x94, symBinAddr: 0x40A0, symSize: 0x44 }
|
||||
- { offsetInCU: 0x351, offset: 0x5D0EE, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xD8, symBinAddr: 0x40E4, symSize: 0x28 }
|
||||
- { offsetInCU: 0x3DA, offset: 0x5D177, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOSHAASQWb', symObjAddr: 0x140, symBinAddr: 0x414C, symSize: 0x4 }
|
||||
- { offsetInCU: 0x3EE, offset: 0x5D18B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOACSQAAWl', symObjAddr: 0x144, symBinAddr: 0x4150, symSize: 0x44 }
|
||||
- { offsetInCU: 0x402, offset: 0x5D19F, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x188, symBinAddr: 0x4194, symSize: 0xC }
|
||||
- { offsetInCU: 0x416, offset: 0x5D1B3, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x194, symBinAddr: 0x41A0, symSize: 0x4 }
|
||||
- { offsetInCU: 0x42A, offset: 0x5D1C7, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOwet', symObjAddr: 0x198, symBinAddr: 0x41A4, symSize: 0x90 }
|
||||
- { offsetInCU: 0x43E, offset: 0x5D1DB, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOwst', symObjAddr: 0x228, symBinAddr: 0x4234, symSize: 0xBC }
|
||||
- { offsetInCU: 0x452, offset: 0x5D1EF, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOwug', symObjAddr: 0x2E4, symBinAddr: 0x42F0, symSize: 0x8 }
|
||||
- { offsetInCU: 0x466, offset: 0x5D203, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOwup', symObjAddr: 0x2EC, symBinAddr: 0x42F8, symSize: 0x4 }
|
||||
- { offsetInCU: 0x47A, offset: 0x5D217, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOwui', symObjAddr: 0x2F0, symBinAddr: 0x42FC, symSize: 0x8 }
|
||||
- { offsetInCU: 0x48E, offset: 0x5D22B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOMa', symObjAddr: 0x2F8, symBinAddr: 0x4304, symSize: 0x10 }
|
||||
- { offsetInCU: 0x50B, offset: 0x5D2A8, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x100, symBinAddr: 0x410C, symSize: 0x40 }
|
||||
- { offsetInCU: 0xFA, offset: 0x5D51B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC07currentE4TypeAA0eH0Ovg', symObjAddr: 0x0, symBinAddr: 0x4344, symSize: 0x334 }
|
||||
- { offsetInCU: 0x250, offset: 0x5D671, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC0A13UpdateHandleryAA0E4TypeOcSgvg', symObjAddr: 0x480, symBinAddr: 0x47C4, symSize: 0x58 }
|
||||
- { offsetInCU: 0x26F, offset: 0x5D690, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC0A13UpdateHandleryAA0E4TypeOcSgvs', symObjAddr: 0x4D8, symBinAddr: 0x481C, symSize: 0x5C }
|
||||
- { offsetInCU: 0x298, offset: 0x5D6B9, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC0A13UpdateHandleryAA0E4TypeOcSgvM', symObjAddr: 0x534, symBinAddr: 0x4878, symSize: 0x44 }
|
||||
- { offsetInCU: 0x2B7, offset: 0x5D6D8, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC0A13UpdateHandleryAA0E4TypeOcSgvM.resume.0', symObjAddr: 0x578, symBinAddr: 0x48BC, symSize: 0x4 }
|
||||
- { offsetInCU: 0x2E2, offset: 0x5D703, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCACycfc', symObjAddr: 0x57C, symBinAddr: 0x48C0, symSize: 0x1C0 }
|
||||
- { offsetInCU: 0x3E1, offset: 0x5D802, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCACycfcTo', symObjAddr: 0x73C, symBinAddr: 0x4A80, symSize: 0x20 }
|
||||
- { offsetInCU: 0x3FD, offset: 0x5D81E, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC5startyyF', symObjAddr: 0x75C, symBinAddr: 0x4AA0, symSize: 0xD0 }
|
||||
- { offsetInCU: 0x4F4, offset: 0x5D915, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC4stopyyF', symObjAddr: 0x82C, symBinAddr: 0x4B70, symSize: 0x58 }
|
||||
- { offsetInCU: 0x585, offset: 0x5D9A6, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC06ensurecD033_DC44086486C9B1E03CB96CC218EB1188LL7Network06NWPathD0CyFyAF0P0VcACcfu_yAJcfu0_', symObjAddr: 0x884, symBinAddr: 0x4BC8, symSize: 0x88 }
|
||||
- { offsetInCU: 0x5F2, offset: 0x5DA13, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCfD', symObjAddr: 0x958, symBinAddr: 0x4C9C, symSize: 0x30 }
|
||||
- { offsetInCU: 0x61F, offset: 0x5DA40, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCAA0eF0A2aDP07currentE4TypeAA0eH0OvgTW', symObjAddr: 0x9F4, symBinAddr: 0x4D38, symSize: 0x4 }
|
||||
- { offsetInCU: 0x63B, offset: 0x5DA5C, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCAA0eF0A2aDP0A13UpdateHandleryAA0E4TypeOcSgvgTW', symObjAddr: 0x9F8, symBinAddr: 0x4D3C, symSize: 0x58 }
|
||||
- { offsetInCU: 0x678, offset: 0x5DA99, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCAA0eF0A2aDP0A13UpdateHandleryAA0E4TypeOcSgvsTW', symObjAddr: 0xA50, symBinAddr: 0x4D94, symSize: 0x5C }
|
||||
- { offsetInCU: 0x6DD, offset: 0x5DAFE, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCAA0eF0A2aDP0A13UpdateHandleryAA0E4TypeOcSgvMTW', symObjAddr: 0xAAC, symBinAddr: 0x4DF0, symSize: 0x44 }
|
||||
- { offsetInCU: 0x71A, offset: 0x5DB3B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCAA0eF0A2aDP5startyyFTW', symObjAddr: 0xAF0, symBinAddr: 0x4E34, symSize: 0x4 }
|
||||
- { offsetInCU: 0x754, offset: 0x5DB75, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCAA0eF0A2aDP4stopyyFTW', symObjAddr: 0xAF4, symBinAddr: 0x4E38, symSize: 0x58 }
|
||||
- { offsetInCU: 0x7D0, offset: 0x5DBF1, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC0A13UpdateHandleryAA0E4TypeOcSgvpACTK', symObjAddr: 0x334, symBinAddr: 0x4678, symSize: 0x94 }
|
||||
- { offsetInCU: 0x7FD, offset: 0x5DC1E, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC0A13UpdateHandleryAA0E4TypeOcSgvpACTk', symObjAddr: 0x3C8, symBinAddr: 0x470C, symSize: 0xB8 }
|
||||
- { offsetInCU: 0x835, offset: 0x5DC56, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderC06ensurecD033_DC44086486C9B1E03CB96CC218EB1188LL7Network06NWPathD0CyFyAF0P0VcACcfu_yAJcfu0_TA', symObjAddr: 0x930, symBinAddr: 0x4C74, symSize: 0x8 }
|
||||
- { offsetInCU: 0x849, offset: 0x5DC6A, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOIegn_SgWOy', symObjAddr: 0x938, symBinAddr: 0x4C7C, symSize: 0x10 }
|
||||
- { offsetInCU: 0x85D, offset: 0x5DC7E, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOIegn_SgWOe', symObjAddr: 0x948, symBinAddr: 0x4C8C, symSize: 0x10 }
|
||||
- { offsetInCU: 0x871, offset: 0x5DC92, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCMa', symObjAddr: 0x988, symBinAddr: 0x4CCC, symSize: 0x20 }
|
||||
- { offsetInCU: 0x885, offset: 0x5DCA6, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus31PathMonitorConnectivityProviderCfETo', symObjAddr: 0x9A8, symBinAddr: 0x4CEC, symSize: 0x4C }
|
||||
- { offsetInCU: 0x8B4, offset: 0x5DCD5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0xC08, symBinAddr: 0x4F4C, symSize: 0x3C }
|
||||
- { offsetInCU: 0x8C8, offset: 0x5DCE9, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOytIegnr_ACIegn_TRTA', symObjAddr: 0xC68, symBinAddr: 0x4FAC, symSize: 0x8 }
|
||||
- { offsetInCU: 0x8DC, offset: 0x5DCFD, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOIegn_ACytIegnr_TRTA', symObjAddr: 0xC70, symBinAddr: 0x4FB4, symSize: 0x8 }
|
||||
- { offsetInCU: 0x43, offset: 0x5DEAD, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOIegn_ACytIegnr_TR', symObjAddr: 0x0, symBinAddr: 0x4FD4, symSize: 0x20 }
|
||||
- { offsetInCU: 0x57, offset: 0x5DEC1, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOytIegnr_ACIegn_TR', symObjAddr: 0x20, symBinAddr: 0x4FF4, symSize: 0x20 }
|
||||
- { offsetInCU: 0xEC, offset: 0x5DF56, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC07currentD4TypeAA0dG0Ovg', symObjAddr: 0x40, symBinAddr: 0x5014, symSize: 0x188 }
|
||||
- { offsetInCU: 0x221, offset: 0x5E08B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC0A13UpdateHandleryAA0D4TypeOcSgvg', symObjAddr: 0x314, symBinAddr: 0x52E8, symSize: 0x58 }
|
||||
- { offsetInCU: 0x240, offset: 0x5E0AA, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC0A13UpdateHandleryAA0D4TypeOcSgvs', symObjAddr: 0x36C, symBinAddr: 0x5340, symSize: 0x5C }
|
||||
- { offsetInCU: 0x269, offset: 0x5E0D3, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC0A13UpdateHandleryAA0D4TypeOcSgvM', symObjAddr: 0x3C8, symBinAddr: 0x539C, symSize: 0x44 }
|
||||
- { offsetInCU: 0x288, offset: 0x5E0F2, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC0A13UpdateHandleryAA0D4TypeOcSgvM.resume.0', symObjAddr: 0x40C, symBinAddr: 0x53E0, symSize: 0x4 }
|
||||
- { offsetInCU: 0x2DD, offset: 0x5E147, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x53E4, symSize: 0x74 }
|
||||
- { offsetInCU: 0x331, offset: 0x5E19B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC5startyyF', symObjAddr: 0x484, symBinAddr: 0x5458, symSize: 0x160 }
|
||||
- { offsetInCU: 0x432, offset: 0x5E29C, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC4stopyyF', symObjAddr: 0x5E4, symBinAddr: 0x55B8, symSize: 0xB0 }
|
||||
- { offsetInCU: 0x4D6, offset: 0x5E340, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC19reachabilityChanged33_B76754B07E532DB4F377382215B296D4LL12notificationySo14NSNotificationC_tFTo', symObjAddr: 0x694, symBinAddr: 0x5668, symSize: 0x4C }
|
||||
- { offsetInCU: 0x508, offset: 0x5E372, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCfD', symObjAddr: 0x6E0, symBinAddr: 0x56B4, symSize: 0x30 }
|
||||
- { offsetInCU: 0x580, offset: 0x5E3EA, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCAA0dE0A2aDP07currentD4TypeAA0dG0OvgTW', symObjAddr: 0x74C, symBinAddr: 0x5720, symSize: 0xD8 }
|
||||
- { offsetInCU: 0x5DB, offset: 0x5E445, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCAA0dE0A2aDP0A13UpdateHandleryAA0D4TypeOcSgvgTW', symObjAddr: 0x824, symBinAddr: 0x57F8, symSize: 0x58 }
|
||||
- { offsetInCU: 0x618, offset: 0x5E482, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCAA0dE0A2aDP0A13UpdateHandleryAA0D4TypeOcSgvsTW', symObjAddr: 0x87C, symBinAddr: 0x5850, symSize: 0x5C }
|
||||
- { offsetInCU: 0x67D, offset: 0x5E4E7, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCAA0dE0A2aDP0A13UpdateHandleryAA0D4TypeOcSgvMTW', symObjAddr: 0x8D8, symBinAddr: 0x58AC, symSize: 0x44 }
|
||||
- { offsetInCU: 0x6BA, offset: 0x5E524, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCAA0dE0A2aDP5startyyFTW', symObjAddr: 0x91C, symBinAddr: 0x58F0, symSize: 0x4 }
|
||||
- { offsetInCU: 0x6D6, offset: 0x5E540, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCAA0dE0A2aDP4stopyyFTW', symObjAddr: 0x920, symBinAddr: 0x58F4, symSize: 0x4 }
|
||||
- { offsetInCU: 0x6F2, offset: 0x5E55C, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC06ensureC033_B76754B07E532DB4F377382215B296D4LL0C0AFCyFTf4n_g', symObjAddr: 0x924, symBinAddr: 0x58F8, symSize: 0xCC }
|
||||
- { offsetInCU: 0x7A9, offset: 0x5E613, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC19reachabilityChanged33_B76754B07E532DB4F377382215B296D4LL12notificationySo14NSNotificationC_tFTf4dn_n', symObjAddr: 0xB28, symBinAddr: 0x5AA0, symSize: 0x1D8 }
|
||||
- { offsetInCU: 0x8CC, offset: 0x5E736, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC0A13UpdateHandleryAA0D4TypeOcSgvpACTK', symObjAddr: 0x1C8, symBinAddr: 0x519C, symSize: 0x94 }
|
||||
- { offsetInCU: 0x8F9, offset: 0x5E763, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderC0A13UpdateHandleryAA0D4TypeOcSgvpACTk', symObjAddr: 0x25C, symBinAddr: 0x5230, symSize: 0xB8 }
|
||||
- { offsetInCU: 0x931, offset: 0x5E79B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCfETo', symObjAddr: 0x710, symBinAddr: 0x56E4, symSize: 0x3C }
|
||||
- { offsetInCU: 0x960, offset: 0x5E7CA, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus32ReachabilityConnectivityProviderCMa', symObjAddr: 0xA4C, symBinAddr: 0x59C4, symSize: 0x20 }
|
||||
- { offsetInCU: 0x97F, offset: 0x5E7E9, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOytIegnr_ACIegn_TRTA', symObjAddr: 0xD24, symBinAddr: 0x5C9C, symSize: 0x20 }
|
||||
- { offsetInCU: 0x9B3, offset: 0x5E81D, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus16ConnectivityTypeOIegn_ACytIegnr_TRTA', symObjAddr: 0xD44, symBinAddr: 0x5CBC, symSize: 0x20 }
|
||||
- { offsetInCU: 0x4F, offset: 0x5EA06, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8register4withySo07FlutterF9Registrar_p_tFZ', symObjAddr: 0x0, symBinAddr: 0x5CE4, symSize: 0x4 }
|
||||
- { offsetInCU: 0x72, offset: 0x5EA29, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8register4withySo07FlutterF9Registrar_p_tFZTo', symObjAddr: 0x4, symBinAddr: 0x5CE8, symSize: 0x30 }
|
||||
- { offsetInCU: 0xCE, offset: 0x5EA85, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC16detachFromEngine3forySo07FlutterF9Registrar_p_tF', symObjAddr: 0x34, symBinAddr: 0x5D18, symSize: 0x54 }
|
||||
- { offsetInCU: 0x145, offset: 0x5EAFC, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC16detachFromEngine3forySo07FlutterF9Registrar_p_tFTo', symObjAddr: 0x88, symBinAddr: 0x5D6C, symSize: 0x94 }
|
||||
- { offsetInCU: 0x1D4, offset: 0x5EB8B, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC6handle_6resultySo17FlutterMethodCallC_yypSgctF', symObjAddr: 0x11C, symBinAddr: 0x5E00, symSize: 0x164 }
|
||||
- { offsetInCU: 0x271, offset: 0x5EC28, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC6handle_6resultySo17FlutterMethodCallC_yypSgctFTo', symObjAddr: 0x280, symBinAddr: 0x5F64, symSize: 0x84 }
|
||||
- { offsetInCU: 0x2A3, offset: 0x5EC5A, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8onListen13withArguments9eventSinkSo12FlutterErrorCSgypSg_yAJctF', symObjAddr: 0x3D4, symBinAddr: 0x60B8, symSize: 0xAC }
|
||||
- { offsetInCU: 0x316, offset: 0x5ECCD, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8onListen13withArguments9eventSinkSo12FlutterErrorCSgypSg_yAJctFTo', symObjAddr: 0x480, symBinAddr: 0x6164, symSize: 0xBC }
|
||||
- { offsetInCU: 0x332, offset: 0x5ECE9, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC0A13UpdateHandler33_9584F05EAAADB49DAFC097AB926B4298LL0A4TypeyAA0dN0O_tF', symObjAddr: 0x53C, symBinAddr: 0x6220, symSize: 0x210 }
|
||||
- { offsetInCU: 0x392, offset: 0x5ED49, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC0A13UpdateHandler33_9584F05EAAADB49DAFC097AB926B4298LL0A4TypeyAA0dN0O_tFyyScMYccfU_', symObjAddr: 0x74C, symBinAddr: 0x6430, symSize: 0x8C }
|
||||
- { offsetInCU: 0x417, offset: 0x5EDCE, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8onCancel13withArgumentsSo12FlutterErrorCSgypSg_tF', symObjAddr: 0x804, symBinAddr: 0x64E8, symSize: 0x64 }
|
||||
- { offsetInCU: 0x48E, offset: 0x5EE45, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8onCancel13withArgumentsSo12FlutterErrorCSgypSg_tFTo', symObjAddr: 0x868, symBinAddr: 0x654C, symSize: 0xB8 }
|
||||
- { offsetInCU: 0x4FB, offset: 0x5EEB2, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginCACycfC', symObjAddr: 0x920, symBinAddr: 0x6604, symSize: 0x20 }
|
||||
- { offsetInCU: 0x519, offset: 0x5EED0, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginCACycfc', symObjAddr: 0x940, symBinAddr: 0x6624, symSize: 0x2C }
|
||||
- { offsetInCU: 0x57C, offset: 0x5EF33, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginCACycfcTo', symObjAddr: 0x96C, symBinAddr: 0x6650, symSize: 0x2C }
|
||||
- { offsetInCU: 0x5E3, offset: 0x5EF9A, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginCfD', symObjAddr: 0x998, symBinAddr: 0x667C, symSize: 0x30 }
|
||||
- { offsetInCU: 0x628, offset: 0x5EFDF, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC0A8ProviderAcA0dG0_p_tcfcTf4en_nAA011PathMonitordG0C_Tg5', symObjAddr: 0xA04, symBinAddr: 0x66E8, symSize: 0x114 }
|
||||
- { offsetInCU: 0x6B5, offset: 0x5F06C, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC8register4withySo07FlutterF9Registrar_p_tFZTf4nd_n', symObjAddr: 0xB18, symBinAddr: 0x67FC, symSize: 0x1B8 }
|
||||
- { offsetInCU: 0x787, offset: 0x5F13E, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC6handle_6resultySo17FlutterMethodCallC_yypSgctF015$syXlSgIeyBy_ypN7Iegn_TRyXlSgIeyBy_Tf1ncn_nTf4nng_n', symObjAddr: 0xEB4, symBinAddr: 0x6B98, symSize: 0x294 }
|
||||
- { offsetInCU: 0x85E, offset: 0x5F215, size: 0x8, addend: 0x0, symName: '_$syXlSgIeyBy_ypSgIegn_TR', symObjAddr: 0x304, symBinAddr: 0x5FE8, symSize: 0xD0 }
|
||||
- { offsetInCU: 0x872, offset: 0x5F229, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x7D8, symBinAddr: 0x64BC, symSize: 0x2C }
|
||||
- { offsetInCU: 0x8A0, offset: 0x5F257, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginCfETo', symObjAddr: 0x9C8, symBinAddr: 0x66AC, symSize: 0x3C }
|
||||
- { offsetInCU: 0x8E8, offset: 0x5F29F, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xCD0, symBinAddr: 0x69B4, symSize: 0x10 }
|
||||
- { offsetInCU: 0x8FC, offset: 0x5F2B3, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0xCE0, symBinAddr: 0x69C4, symSize: 0x40 }
|
||||
- { offsetInCU: 0x910, offset: 0x5F2C7, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD20, symBinAddr: 0x6A04, symSize: 0x40 }
|
||||
- { offsetInCU: 0x924, offset: 0x5F2DB, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginCMa', symObjAddr: 0xD60, symBinAddr: 0x6A44, symSize: 0x20 }
|
||||
- { offsetInCU: 0x938, offset: 0x5F2EF, size: 0x8, addend: 0x0, symName: '_$syXlSgIeyBy_ypSgIegn_TRTA', symObjAddr: 0xE20, symBinAddr: 0x6B04, symSize: 0x8 }
|
||||
- { offsetInCU: 0x94C, offset: 0x5F303, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0xE28, symBinAddr: 0x6B0C, symSize: 0x48 }
|
||||
- { offsetInCU: 0x960, offset: 0x5F317, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0xE70, symBinAddr: 0x6B54, symSize: 0x24 }
|
||||
- { offsetInCU: 0x974, offset: 0x5F32B, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xE94, symBinAddr: 0x6B78, symSize: 0x20 }
|
||||
- { offsetInCU: 0x993, offset: 0x5F34A, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC0A13UpdateHandler33_9584F05EAAADB49DAFC097AB926B4298LL0A4TypeyAA0dN0O_tFyyScMYccfU_TA', symObjAddr: 0x11A4, symBinAddr: 0x6E88, symSize: 0xC }
|
||||
- { offsetInCU: 0x9A7, offset: 0x5F35E, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x11B0, symBinAddr: 0x6E94, symSize: 0x10 }
|
||||
- { offsetInCU: 0x9BB, offset: 0x5F372, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x11C0, symBinAddr: 0x6EA4, symSize: 0x8 }
|
||||
- { offsetInCU: 0x9CF, offset: 0x5F386, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x1208, symBinAddr: 0x6EEC, symSize: 0x54 }
|
||||
- { offsetInCU: 0x9E3, offset: 0x5F39A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x125C, symBinAddr: 0x6F40, symSize: 0x10 }
|
||||
- { offsetInCU: 0x9F7, offset: 0x5F3AE, size: 0x8, addend: 0x0, symName: '_$s17connectivity_plus27SwiftConnectivityPlusPluginC0A8ProviderAcA0dG0_p_tcfcyAA0D4TypeOcACcfu_yAGcfu0_TA', symObjAddr: 0x1290, symBinAddr: 0x6F74, symSize: 0x34 }
|
||||
...
|
||||
Reference in New Issue
Block a user