2026-06-15 01:44:20 +08:00
|
|
|
// 自动初始化(对齐 Android ContentProvider 模式)
|
|
|
|
|
import './autoInit'
|
|
|
|
|
|
2026-04-24 16:16:31 +08:00
|
|
|
export { XuqmSDK } from './sdk'
|
2026-06-15 01:44:20 +08:00
|
|
|
export type { XuqmInitOptions, XuqmConfig, XuqmUserInfo } from './config'
|
2026-04-28 16:55:12 +08:00
|
|
|
export { getConfig, isInitialized, setUserId, getUserId } from './config'
|
2026-05-22 17:57:01 +08:00
|
|
|
export { awaitInitialization } from './sdk'
|
2026-05-08 09:27:38 +08:00
|
|
|
export { apiRequest, configureHttp, _getToken, _saveToken, _clearToken } from './http'
|
2026-04-29 15:46:40 +08:00
|
|
|
export { DEFAULT_TENANT_PLATFORM_URL, DEFAULT_IM_WS_URL } from './constants'
|
2026-04-25 16:41:19 +08:00
|
|
|
export { getDeviceId, getDeviceInfo, detectPushVendor } from './device'
|
|
|
|
|
export type { DeviceInfo, PushVendor } from './device'
|
|
|
|
|
export { ScaledImage } from './components/ScaledImage'
|
2026-05-07 19:39:41 +08:00
|
|
|
export {
|
|
|
|
|
XWebViewControl,
|
|
|
|
|
getXWebViewConfig,
|
|
|
|
|
openXWebView,
|
|
|
|
|
setXWebViewController,
|
|
|
|
|
} from './xwebview/XWebViewBridge'
|
|
|
|
|
export type {
|
|
|
|
|
XWebViewClickMenu,
|
|
|
|
|
XWebViewConfig,
|
|
|
|
|
XWebViewControllerAPI,
|
|
|
|
|
XWebViewDownloadDecision,
|
|
|
|
|
XWebViewDownloadProgress,
|
|
|
|
|
XWebViewDownloadRequest,
|
|
|
|
|
XWebViewDownloadResult,
|
|
|
|
|
XWebViewMessageEvent,
|
|
|
|
|
XWebViewPermissionRequest,
|
|
|
|
|
} from './xwebview/types'
|