mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-05-23 22:37:41 +08:00
34 lines
611 B
JavaScript
34 lines
611 B
JavaScript
import { version } from '../../package.json'
|
|
process.versions.app = version
|
|
|
|
global.playerStatus = {
|
|
isInitialized: false,
|
|
isRegisteredService: false,
|
|
isIniting: false,
|
|
}
|
|
|
|
global.restorePlayInfo = null
|
|
global.allList = null
|
|
global.globalObj = null
|
|
global.listScrollPosition = {}
|
|
global.listSort = {}
|
|
|
|
global.isScreenKeepAwake = false
|
|
|
|
// 是否播放完后退出应用
|
|
global.isPlayedExit = false
|
|
|
|
global.prevListPlayIndex = -1
|
|
|
|
global.syncKeyInfo = {}
|
|
global.isSyncEnableing = false
|
|
|
|
global.playInfo = {
|
|
isPlaying: false,
|
|
currentPlayMusicInfo: null,
|
|
duration: 0,
|
|
}
|
|
|
|
global.isEnableSyncLog = false
|
|
|