fix: exit live room

This commit is contained in:
lilong.129
2023-04-30 00:40:44 +08:00
parent a69db8500c
commit 6bc5e11e2d
6 changed files with 133 additions and 17 deletions

View File

@@ -251,9 +251,11 @@ type AppInfo struct {
}
type AppBaseInfo struct {
Pid int `json:"pid,omitempty"`
BundleId string `json:"bundleId"` // package name for android
Activity string // view controller for ios
Pid int `json:"pid,omitempty"`
BundleId string `json:"bundleId,omitempty"` // ios package name
ViewController string `json:"viewController,omitempty"` // ios view controller
PackageName string `json:"packageName,omitempty"` // android package name
Activity string `json:"activity,omitempty"` // android activity
}
type AppState int