Activity missed :com.game.demo.jssc.wxapi.WXPayEntryActivity

Cocos2dX开发游戏遇微信回调配置问题
作者分享用Cocos2dX开发游戏时遇到的小bug。日志显示错过特定类,需查看Android.xml配置文件,微信回调配置信息要与包名匹配,否则支付会闪退,提醒开发时要仔细。

最近几天用cocos2dx开发游戏遇见的小bug,其实遇见问题不必慌,好好看看日志,一定能排查出来

这是我前几天遇到的问题,日志报告很清楚,活动错过了com.game.mf.jssc.vivo.wxapi下面的WXPayEntryActivity这个类,首先你要看看Android.xml配置文件里的信息

这是微信回调所用的配置信息,一定要和自己的包名所匹配,要不在支付的时候会闪退,很低级的一个错误,所以在开发时,一定要仔细,否则一个小错误就可能会找半天

这些日志是什么意思:10-01 08:30:20.628 385 11689 I ActivityManager: Force stopping com.zuoyebang.bangbangshizi appid=10047 user=0: from pid 385 10-01 08:30:20.628 86 117 E AncoHwc : vsync missed, vsyncGap=180, vsyncFd=10, now=26343924159629, period=11151354, vsyncCount=392511, vsyncPeriod=11144684 10-01 08:30:20.629 385 11689 I AncoAms : [AmsBrokerProxy] notifyRemoveProcess, packageName: com.zuoyebang.bangbangshizi pid: 16512 10-01 08:30:20.629 385 11689 I ActivityManager: Killing 16512:com.zuoyebang.bangbangshizi/u0a47 (adj 935): stop com.zuoyebang.bangbangshizi due to from pid 385 10-01 08:30:20.632 161 545 I CameraService: onUidIdle: enter uid: 10047 10-01 08:30:20.634 73 14197 I netd : networkAddRouteParcel(104, RouteInfoParcel{destination: **.**.**.**/0, ifName: wlan0, nextHop: **.**.**.**, mtu: 0}) <0.16ms> 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I NetworkRanker: skip getBestNetworkForAnco, defNetType=1, naiSize=1 10-01 08:30:20.634 385 607 I ConnectivityService: NetReassign [no changes] 10-01 08:30:20.635 385 575 I AncoInputChannel: [0] DISPLAY:0,WINDOW:30,ACTION:4,FLAGS:0,zOrder:4102.000000 10-01 08:30:20.635 385 575 I AncoInputChannel: [1] DISPLAY:0,WINDOW:19,ACTION:1,FLAGS:0,zOrder:2200.000000 10-01 08:30:20.635 385 575 I AncoInputChannel: [2] DISPLAY:0,WINDOW:18,ACTION:1,FLAGS:0,zOrder:2125.000000 10-01 08:30:20.635 385 575 I AncoInputChannel: [3] DISPLAY:0,WINDOW:5,ACTION:1,FLAGS:0,zOrder:100.000000 10-01 08:30:20.635 385 575 I AncoInputChannel: [4] DISPLAY:0,WINDOW:17,ACTION:1,FLAGS:1,zOrder:3.000000 10-01 08:30:20.635 385 575 I AncoInputChannel: [5] DISPLAY:0,WINDOW:10,ACTION:1,FLAGS:0,zOrder:2.000000 10-01 08:30:20.635 385 575 I AncoInputChannel: [6] DISPLAY:0,WINDOW:8,ACTION:1,FLAGS:0,zOrder:1.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: updateType:0; focusWindowId:10; windowsSize:7 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:30; flags:0; action:4; displayId:0; zOrder:4102.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:19; flags:0; action:1; displayId:0; zOrder:2200.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:18; flags:0; action:1; displayId:0; zOrder:2125.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:5; flags:0; action:1; displayId:0; zOrder:100.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:17; flags:1; action:1; displayId:0; zOrder:3.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:10; flags:0; action:1; displayId:0; zOrder:2.000000 10-01 08:30:20.635 385 575 I ContainerIpcManager: id:8; flags:0; action:1; displayId:0; zOrder:1.000000 10-01
最新发布
10-16
Line 30363: 10-12 16:45:01.939706 5473 5473 D CarrierSvcBindHelper: onPackageModified: com.google.android.apps.bard Line 30367: 10-12 16:45:01.947034 5473 6010 I SatelliteAppTracker: onPackageModified : com.google.android.apps.bard Line 30376: 10-12 16:45:01.965915 5638 5726 D PackageUpdatedTask: Package updated: mOp=UPDATE packages=[com.google.android.apps.bard], user=UserHandle{0} Line 30379: 10-12 16:45:01.969288 1570 5152 D WifiService: Remove settings for package:com.google.android.apps.bard Line 30384: 10-12 16:45:01.981725 1570 5152 D WifiConfigManager: Remove all networks for app ApplicationInfo{df0e8e2 com.google.android.apps.bard} Line 30386: 10-12 16:45:01.988466 5638 5726 W AllAppsList: updatePackage: no Activities matched updated package, removing any AppInfo with package=com.google.android.apps.bard, user=UserHandle{0} Line 30387: 10-12 16:45:01.988815 5638 5726 D PackageUpdatedTask: OP_UPDATE - AllAppsList.trackRemoves callback: removed component=ComponentInfo{com.google.android.apps.bard/com.google.android.apps.bard.shellapp.BardEntryPointActivity} id=-1 Look for earlier AllAppsList logs to find more information. Line 30387: 10-12 16:45:01.988815 5638 5726 D PackageUpdatedTask: OP_UPDATE - AllAppsList.trackRemoves callback: removed component=ComponentInfo{com.google.android.apps.bard/com.google.android.apps.bard.shellapp.BardEntryPointActivity} id=-1 Look for earlier AllAppsList logs to find more information. Line 30404: 10-12 16:45:02.012584 1570 5152 V WifiScanRequestProxy: Clearing scan request timestamps for uid=10103, packageName=com.google.android.apps.bard Line 30487: 10-12 16:45:02.041847 1570 5152 I PasspointManager: No app ops listener found for com.google.android.apps.bard Line 30499: 10-12 16:45:02.081338 6414 7084 I Finsky : [195] AIM: AppInfoManager-Perf > OnDeviceAppInfo > cacheHitCount=0, cacheMissCount=1. Missed in cache (limit 10) : [com.google.android.apps.bard] Line 30500: 10-12 16:45:02.081553 5638 5726 D PackageUpdatedTask: OP_UPDATE: package com.google.android.apps.bard is disabled, removing package. Line 30501: 10-12 16:45:02.081978 5638 5726 D ModelWriter: removing items from db com.google.android.apps.bard. Reason: [removed because the corresponding package or component is removed. mOp=2 removedPackages=[com.google.android.apps.bard] removedComponents=[{com.google.android.apps.bard/com.google.android.apps.bard.shellapp.BardEntryPointActivity}]] Line 30501: 10-12 16:45:02.081978 5638 5726 D ModelWriter: removing items from db com.google.android.apps.bard. Reason: [removed because the corresponding package or component is removed. mOp=2 removedPackages=[com.google.android.apps.bard] removedComponents=[{com.google.android.apps.bard/com.google.android.apps.bard.shellapp.BardEntryPointActivity}]] Line 30501: 10-12 16:45:02.081978 5638 5726 D ModelWriter: removing items from db com.google.android.apps.bard. Reason: [removed because the corresponding package or component is removed. mOp=2 removedPackages=[com.google.android.apps.bard] removedComponents=[{com.google.android.apps.bard/com.google.android.apps.bard.shellapp.BardEntryPointActivity}]] Line 30501: 10-12 16:45:02.081978 5638 5726 D ModelWriter: removing items from db com.google.android.apps.bard. Reason: [removed because the corresponding package or component is removed. mOp=2 removedPackages=[com.google.android.apps.bard] removedComponents=[{com.google.android.apps.bard/com.google.android.apps.bard.shellapp.BardEntryPointActivity}]] Line 30513: 10-12 16:45:02.107869 5638 5638 D EXT-LAUNCHER3: LauncherAppMonitor, onPackagesUpdated, packageNames:[com.google.android.apps.bard] user:UserHandle{0} type:2 Line 30514: 10-12 16:45:02.108107 5638 5638 D EXT-LAUNCHER3: LauncherAppMonitor, onPackagesUpdated, packageNames:[com.google.android.apps.bard] user:UserHandle{0} type:2 Line 30516: 10-12 16:45:02.117572 5473 6004 D ImsResolver: maybeAddedImsService, packageName: com.google.android.apps.bard Line 30517: 10-12 16:45:02.117764 5473 6004 V ImsResolver: searchForImsServices: package=com.google.android.apps.bard, users=[UserHandle{0}] Line 30518: 10-12 16:45:02.118200 5473 6004 V ImsResolver: searchForImsServices: package=com.google.android.apps.bard, users=[UserHandle{0}] Line 30522: 10-12 16:45:02.121760 5473 5473 D SatelliteController: packageStateChanged: package:com.google.android.apps.bard DefaultSmsPackageName:com.google.android.apps.messaging Line 30541: 10-12 16:45:02.142427 6414 7127 I Finsky : [209] AIM: AppInfoManager-Perf > ItemModel > CacheSize=0, cacheHitCount=0, cacheMissCount=1, total appsWithNoServerDataCount=0. Missed in cache (limit 10) : [com.google.android.apps.bard] Line 30546: 10-12 16:45:02.152202 6414 7127 I Finsky : [209] ItemStore: Not cached: com.google.android.apps.bard Line 30591: 10-12 16:45:02.356832 6059 6059 D MediaProvider: Removing disabled package: com.google.android.apps.bard from providers list if required. Line 30638: 10-12 16:45:02.497047 7702 12626 I Icing : doRemovePackageData com.google.android.apps.bard Line 30700: 10-12 16:45:02.656556 7702 12626 I Icing : doRemovePackageData com.google.android.apps.bard Line 31209: 10-12 16:45:03.900034 6414 7084 I Finsky : [195] AU: Cannot update com.google.android.apps.bard because package is disabled 请详细解读一下
10-14
09-13 21:54:41.525601 7396 7396 I SystemUi--Aod: OplusBitmojiReceiver-->onReceive: action= android.intent.action.PACKAGE_ADDED 09-13 21:54:41.526329 7396 8165 D SystemUi--Notification: NotificationCenterConnect-->runWithSuspend: need start 09-13 21:54:41.527172 7304 8008 D IconUtils[u0]: getFancyDrawable[morph fancy icon]- begin:com.disney.wheresmywater2_goo 09-13 21:54:41.527925 7304 8008 W FancyIcon.AppsIconsHelper: getFancyDrawableRoot , OplusAppIconInfo.indexOfPackageName return -1 09-13 21:54:41.527955 7304 8008 W FancyIcon.AppsIconsManager: getIconFancyDrawable , getFancyDrawableRoot return null 09-13 21:54:41.527973 7304 8008 D IconUtils[u0]: getFancyDrawable[morph fancy icon] 1X1 -error! 09-13 21:54:41.527984 7304 8008 D IconUtils[u0]: [cost]getFancyDrawable: 0 09-13 21:54:41.527992 7304 8008 D Launcher.IconCache: applyCacheEntry end 09-13 21:54:41.528787 7396 7396 I SDP.SysUi.InstallMonitorManager: Broadcast received android.intent.action.PACKAGE_ADDED.[ssdk:v1.3.50-443fb45,sdplugin:v16.0.60-e15af3ed] [SeedlingSdk|com.android.systemui|2.0.26-f348910] 09-13 21:54:41.529017 7396 7396 I SDP.SysUi.InstallMonitorManager: Start check ums pks for com.disney.wheresmywater2_goo.[ssdk:v1.3.50-443fb45,sdplugin:v16.0.60-e15af3ed] 09-13 21:54:41.529083 7396 7396 I SDP.SysUi.InstallMonitorManager: Start notify install for package:com.disney.wheresmywater2_goo.[ssdk:v1.3.50-443fb45,sdplugin:v16.0.60-e15af3ed] 09-13 21:54:41.531582 3391 7265 E OMG_MultiGesture: onGestureDetected error : 4 e: java.lang.IllegalArgumentException: invalid pointerIndex 2 for MotionEvent { action=MOVE, id[0]=1, x[0]=286.5, y[0]=1864.5, id[1]=2, x[1]=530.125, y[1]=1649.12, pointerCount=2, eventTime=59346633752000, downTime=59346498486000, deviceId=3, source=TOUCHSCREEN, displayId=0, eventId=0x1625a196} 09-13 21:54:41.532157 7396 8165 D SystemUi--Notification: NotificationCenterConnect-->bind: 09-13 21:54:41.533108 7396 10297 I SDP.SysUi.ContextProxy: acquireClient with authority:com.oplus.pantanal.ums.statictis, pkgName:com.android.systemui, use userContext, userId:0[ssdk:v1.3.50-443fb45,sdplugin:v16.0.60-e15af3ed] 09-13 21:54:41.533351 7304 8008 D Launcher.Badge[u0]: DotUtils#on package install -com.disney.wheresmywater2_goo 09-13 21:54:41.533498 7396 10297 D OplusUserContext: acquireUnstableContentProviderClient, originAuthority com.oplus.pantanal.ums.statictis authorityWithoutUserId com.oplus.pantanal.ums.statictis authorityWithUserId 0@com.oplus.pantanal.ums.statictis UserContextImp com.android.systemui.SystemUIApplication@fc03f92 userId 0 09-13 21:54:41.533529 7304 8008 D NotificationBadgeManager[u0]: updateAllInstalledPackages,add:com.disney.wheresmywater2_goo 09-13 21:54:41.533593 7304 8008 D OplusPackageUpdatedTask[u0]: handle added appinfo, inLoaded = true 09-13 21:54:41.533607 7304 8008 D OplusPackageUpdatedTask[u0]: bindAppsAddedToWorkspace -- shouldAdd.size = 1 09-13 21:54:41.535200 7304 8008 D Launcher.Badge[u0]: BadgeDataProviderCompatVP#onPackageUpdate, pkg = com.disney.wheresmywater2_goo, user = UserHandle{0} 09-13 21:54:41.535413 7304 8008 D Launcher.AppEdit[u0]: AppCustomizerManager#flatMap allAppInfo 106 --------------------------------start------------------------------- 09-13 21:54:41.535458 7304 8008 D Launcher.AppEdit[u0]: AppEditConfig# flatMapVerify isNotSupportOpen false 09-13 21:54:41.535522 7304 8008 D Launcher.AppEdit[u0]: AppEditConfig#isNotSupportOpen true 09-13 21:54:41.535552 7304 8008 D Launcher.AppEdit[u0]: AppCustomizerManager#flatMapVerify false 09-13 21:54:41.537455 7304 8008 D Launcher.AppEdit[u0]: AppEditConfig# flatMapVerify isNotSupportOpen false 09-13 21:54:41.537857 7304 8008 D Launcher.AppEdit[u0]: AppEditConfig#isNotSupportOpen true 09-13 21:54:41.537886 7304 8008 D Launcher.AppEdit[u0]: AppCustomizerManager#flatMapVerify false 09-13 21:54:41.537950 7304 8008 D OplusPackageUpdatedTask[u0]: removedPackages: [], removedComponents: [], removedMultiAppPackages: [], forceKeepShortcuts: IntSet{} 09-13 21:54:41.538223 7304 8008 D Launcher.WidgetsModel[u0]: update app: #com.android.launcher3.LauncherAppState@8f59934, packageUser: com.disney.wheresmywater2_goo#UserHandle{0},category=-1, caller: com.android.launcher3.model.OplusPackageUpdatedTask.execute:2931 com.android.launcher3.model.BaseModelUpdateTask.run:35 android.os.Handler.handleCallback:1027 android.os.Handler.dispatchMessage:108 android.os.Looper.loopOnce:298 android.os.Looper.loop:408 android.os.HandlerThread.run:85 09-13 21:54:41.538590 7304 7304 D OLauncher[u0]: addAppOnWorkspace: false, mode: Drawer, apps: [AppInfo(id=-1 type=APP container=all_apps targetComponent=ComponentInfo{com.disney.wheresmywater2_goo/com.disney.wheresmywater2_goo.ActivitySkuGoogle} screen=-1 cell(-1,-1) span(1,1) minSpan(1,1) rank=0 isStackItem=false user=UserHandle{0} title=Water? 2 hashCode=268258486, update=true, limit=false, runtime=110000000 componentName=ComponentInfo{com.disney.wheresmywater2_goo/com.disney.wheresmywater2_goo.ActivitySkuGoogle} installReason=0 runtimeStatusFlags=384)] 09-13 21:54:41.538759 7396 7396 D SystemUi--Notification: NotificationTopListManage-->appChangeReceiver: android.intent.action.PACKAGE_ADDED 09-13 21:54:41.539795 7304 8008 D Launcher.Widget[u0]: OplusAppWidgetUtils#getAllProviders packageUser = com.disney.wheresmywater2_goo#UserHandle{0},category=-1; com.android.launcher3.widget.WidgetManagerHelper.getAllProviders:9 com.android.launcher3.model.WidgetsModel.update:83 com.android.launcher3.model.OplusPackageUpdatedTask.execute:2931 com.android.launcher3.model.BaseModelUpdateTask.run:35 android.os.Handler.handleCallback:1027 android.os.Handler.dispatchMessage:108 android.os.Looper.loopOnce:298 09-13 21:54:41.541659 7304 8008 D Launcher.Widget[u0]: WidgetManagerHelper#getAllProviders cost: 3; com.disney.wheresmywater2_goo#UserHandle{0},category=-1; widget provider size: 0 09-13 21:54:41.542872 3391 7265 E OMG_MultiGesture: onGestureDetected error : 4 e: java.lang.IllegalArgumentException: invalid pointerIndex 2 for MotionEvent { action=MOVE, id[0]=1, x[0]=294.125, y[0]=1902.88, id[1]=2, x[1]=535.875, y[1]=1696.25, pointerCount=2, eventTime=59346641959000, downTime=59346498486000, deviceId=3, source=TOUCHSCREEN, displayId=0, eventId=0x335d52b4} 09-13 21:54:41.545419 3391 7265 E OMG_MultiGesture: onGestureDetected error : 4 e: java.lang.IllegalArgumentException: invalid pointerIndex 2 for MotionEvent { action=MOVE, id[0]=1, x[0]=299.125, y[0]=1932.62, id[1]=2, x[1]=541.875, y[1]=1732, pointerCount=2, eventTime=59346650429000, downTime=59346498486000, deviceId=3, source=TOUCHSCREEN, displayId=0, eventId=0x3508a432} 09-13 21:54:41.545846 26971 5557 I Finsky : [17245] AIM: AppInfoManager-Perf > ItemModel > CacheSize=86, cacheHitCount=0, cacheMissCount=1, total appsWithNoServerDataCount=4. Missed in cache (limit 10) : [com.disney.wheresmywater2_goo] 09-13 21:54:41.549889 26971 5557 I Finsky : [17245] AIM: AppInfoManager-Perf > ItemModel > ItemStore Called 1 apps cacheOptions = USE_CACHE 09-13 21:54:41.550176 2014 2164 E sensors-hal: send_brightness:978, light_iface: qmi connection closed 09-13 21:54:41.551161 3391 5515 V UnwantedInteractionBlocker: notifyMotion - id=3bf9d39e eventTime=59346657723000, deviceId=3, source=TOUCHSCREEN, displayId=0, policyFlags=0x0, action=POINTER_UP(0), actionButton=0x0, flags=0x0, metaState=0x0, buttonState=0x0, edgeFlags=0x0, xPrecision=8.000000, yPrecision=8.000000, xCursorPosition=nan, yCursorPosition=nan, downTime=59346498486000 09-13 21:54:41.551204 3391 5515 V UnwantedInteractionBlocker: Pointer 0: id=1, toolType=FINGER, x=299.125000, y=1932.625000, pressure=1.000000, size=0.043137, touchMajor=1.375000, touchMinor=1.375000, toolMajor=1.375000, toolMinor=1.375000, orientation=0.000000 09-13 21:54:41.551218 3391 5515 V UnwantedInteractionBlocker: Pointer 1: id=2, toolType=FINGER, x=546.000000, y=1755.125000, pressure=1.000000, size=0.043137, touchMajor=1.375000, touchMinor=1.375000, toolMajor=1.375000, toolMinor=1.375000, orientation=0.000000 09-13 21:54:41.551451 3391 5513 V InputDispatcher: dispatchMotion - eventTime=59346657723000, deviceId=3, source=TOUCHSCREEN, displayId=0, policyFlags=0x62000000, action=POINTER_UP(0), actionButton=0x0, flags=0x0, metaState=0x0, buttonState=0x0,edgeFlags=0x0, xPrecision=8.000000, yPrecision=8.000000, downTime=59346498486000 09-13 21:54:41.551727 3391 5513 I InputDispatcher: Publishing fba4129 com.android.vending/com.android.vending.AssetBrowserActivity status: OK seq=1094370, Pointers = 1: (299.1, 1932.6) 2: (546.0, 1755.1) action=POINTER_UP(0) downTime=59346498486000 eventTime= 59346657723000 transformForDebugInput (ROT_0) (IDENTITY); 1.0000 0.0000 -0.0000; 0.0000 1.0000 -0.0000; 0.0000 0.0000 1.0000; 09-13 21:54:41.552240 26971 26971 E Input_Track: [Input] Start <<<<<<<<<<<<<< 1006228382 09-13 21:54:41.552422 26971 26971 E Input_Track: [Input] Ends >>>>>>>>>>>>>>>> HANDLED 09-13 21:54:41.552926 3391 7265 W InputLog: OMG_ThreeStrategy : onThreeFingers------- , reason=1, mCurrStatus=0 event = MotionEvent { action=ACTION_POINTER_UP(0), actionButton=0, id[0]=1, x[0]=299.125, y[0]=1932.625, toolType[0]=TOOL_TYPE_FINGER, id[1]=2, x[1]=546.0, y[1]=1755.125, toolType[1]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=2, historySize=0, eventTime=59346657, downTime=59346498, deviceId=3, source=0x1002, displayId=0, eventId=1006228382 } 09-13 21:54:41.553677 3391 7265 E OMG_MultiGesture: onGestureDetected error : 4 e: java.lang.IllegalArgumentException: invalid pointerIndex 1 for MotionEvent { action=MOVE, id[0]=2, x[0]=546, y[0]=1755.12, eventTime=59346657723000, downTime=59346498486000, deviceId=3, source=TOUCHSCREEN, displayId=0, eventId=0x26d58f46} 09-13 21:54:41.554044 1138 1138 E KeymasterUtils: IKMHal_sendCmd failed with rsp_header->status: -28 09-13 21:54:41.554115 1138 1138 E KeyMasterHalDevice: abort_operation 09-13 21:54:41.554120 1138 1138 E KeyMasterHalDevice: ret: -28 09-13 21:54:41.554803 26971 5557 I Finsky : [17245] AIM: ItemModel fetch - unauth(0), auth([vJqvkGlefhCsRwKIno-dkhtmUkj1Qq7uaFb41T8fTao]->1) 09-13 21:54:41.560006 3391 7265 E OMG_MultiGesture: onGestureDetected error : 4 e: java.lang.IllegalArgumentException: invalid pointerIndex 1 for MotionEvent { action=MOVE, id[0]=2, x[0]=549.75, y[0]=1768.38, eventTime=59346665717000, downTime=59346498486000, deviceId=3, source=TOUCHSCREEN, displayId=0, eventId=0x803531d} 09-13 21:54:41.560434 3391 8202 D Telecom : c: onAggregate: {[ApiEvent: mApiId=9, mCallerUid=1000, mResult=1]=1, [ApiEvent: mApiId=37, mCallerUid=10079, mResult=1]=31, [ApiEvent: mApiId=43, mCallerUid=1001, mResult=1]=1, [ApiEvent: mApiId=22, mCallerUid=10135, mResult=2]=15, [ApiEvent: mApiId=24, mCallerUid=10127, mResult=1]=1, [ApiEvent: mApiId=53, mCallerUid=1001, mResult=1]=48, [ApiEvent: mApiId=22, mCallerUid=1000, mResult=1]=190, [ApiEvent: mApiId=55, mCallerUid=1001, mResult=1]=2, [ApiEvent: mApiId=24, mCallerUid=1000, mResult=1]=5, [ApiEvent: mApiId=53, mCallerUid=10302, mResult=1]=1, [ApiEvent: mApiId=24, mCallerUid=10113, mResult=1]=20, [ApiEvent: mApiId=59, mCallerUid=1001, mResult=1]=1, [ApiEvent: mApiId=20, mCallerUid=10295, mResult=1]=10, [ApiEvent: mApiId=36, mCallerUid=1000, mResult=1]=4, [ApiEvent: mApiId=43, mCallerUid=1000, mResult=1]=181, [ApiEvent: mApiId=30, mCallerUid=10295, mResult=1]=9, [ApiEvent: mApiId=47, mCallerUid=1000, mResult=1]=276, [ApiEvent: mApiId=46, mCallerUid=1000, mResult=1]=276, [ApiEvent: mApiId=49, mCallerUid=1000, mResult=1]=98, [ApiEvent: mApiId=17, mCallerUid=1001, mResult=1]=3, [ApiEvent: mApiId=43, mCallerUid=10243, mResult=1]=281, [ApiEvent: mApiId=24, mCallerUid=1001, mResult=1]=10, [ApiEvent: mApiId=25, mCallerUid=1001, mResult=1]=4, [ApiEvent: mApiId=53, mCallerUid=10179, mResult=1]=1, [ApiEvent: mApiId=30, mCallerUid=10079, mResult=1]=3, [ApiEvent: mApiId=24, mCallerUid=10079, mResult=1]=33, [ApiEvent: mApiId=38, mCallerUid=1001, mResult=1]=1, [ApiEvent: mApiId=37, mCallerUid=1001, mResult=1]=7, [ApiEvent: mApiId=22, mCallerUid=10108, mResult=1]=2} 09-13 21:54:41.561058 26971 5510 I Finsky : [17231] SCH: Received scheduling request: Id: 37-48, Constraints: [{ L: 0, D: 0, C: CHARGING_NONE, I: IDLE_NONE, N: NET_NONE, B: BATTERY_ANY }] 09-13 21:54:41.565369 8062 8627 D Battery : DeepSleepRecord: recoardEvent: appendValue=true, event=appTrafficChangeLocked: pkg=com.heytap.market,req=start,job=check_upgrade 09-13 21:54:41.566183 23649 4597 I APS_CORE: [INFO][ ALGO_LAO ] APSCaptureManager.cpp: 2324 onDeferUnitTimeOut() onDeferUnitTimeOut E 09-13 21:54:41.566337 23649 4597 I APS_CORE: [INFO][ ALGO_LAO ] APSCaptureManager.cpp: 2359 onDeferUnitTimeOut() onDeferUnitTimeOut X 09-13 21:54:41.566761 9686 14719 I z8.o : Provider GmsCore_OpenSSL not available 09-13 21:54:41.567114 3391 5515 V UnwantedInteractionBlocker: notifyMotion - id=2813701f eventTime=59346673664000, deviceId=3, source=TOUCHSCREEN, displayId=0, policyFlags=0x0, action=UP, actionButton=0x0, flags=0x0, metaState=0x0, buttonState=0x0, edgeFlags=0x0, xPrecision=8.000000, yPrecision=8.000000, xCursorPosition=nan, yCursorPosition=nan, downTime=59346498486000 09-13 21:54:41.567156 3391 5515 V UnwantedInteractionBlocker: Pointer 0: id=2, toolType=FINGER, x=549.750000, y=1768.375000, pressure=1.000000, size=0.043137, touchMajor=1.375000, touchMinor=1.375000, toolMajor=1.375000, toolMinor=1.375000, orientation=0.000000 09-13 21:54:41.567570 3391 5513 V InputDispatcher: dispatchMotion - eventTime=59346673664000, deviceId=3, source=TOUCHSCREEN, displayId=0, policyFlags=0x62000000, action=UP, actionButton=0x0, flags=0x0, metaState=0x0, buttonState=0x0,edgeFlags=0x0, xPrecision=8.000000, yPrecision=8.000000, downTime=59346498486000 09-13 21:54:41.567917 3391 5513 I InputDispatcher: Publishing fba4129 com.android.vending/com.android.vending.AssetBrowserActivity status: OK seq=1094382, Pointers = 2: (549.8, 1768.4) action=UP downTime=59346498486000 eventTime= 59346673664000 transformForDebugInput (ROT_0) (IDENTITY); 1.0000 0.0000 -0.0000; 0.0000 1.0000 -0.0000; 0.0000 0.0000 1.0000; 09-13 21:54:41.568199 3391 7478 D UAH-UahAdaptHelper: adaptSetNotification identity = OplusUAwareInputHelpersrc = 1000 , type 1 ,p1 = -1 ,p2 = -1 ,p3 = -1 ,p4 = 09-13 21:54:41.568223 3391 7478 I [UAH_CLIENT]: uahRuleCtl, ruleId:1000, status:1 09-13 21:54:41.568615 2131 26335 I URCC_CORE_SERVER: [urccRuleCtrl] urccRuleCtrl:1000 enable:1 09-13 21:54:41.568904 3391 7478 I [UAH_CLIENT]: UahRelease, handle:42255 09-13 21:54:41.569441 2131 2206 I URCC_CORE_SERVER: [urccRequestReleaseExec] urccRelease: handle: 42255, said:68 09-13 21:54:41.569477 3391 7478 I [UAH_CLIENT]: UahEventAcquire, cmdid:6, pkg:none, identity:OplusUAwareInputHelper 09-13 21:54:41.569810 26971 26971 W InputLog: VRI[AssetBrowserActivity] : debugInputEventStart event=MotionEvent { action=ACTION_UP, actionButton=0, id[0]=2, x[0]=549.75, y[0]=1768.375, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=59346673, downTime=59346498, deviceId=3, source=0x1002, displayId=0, eventId=672362527 } 09-13 21:54:41.569856 2131 2206 I URCC_RES_MANAGER: [dumpResourceApplyInfo] urccResUpdate: CPU:[0,0x1020,0,0x00] MEM:[42253,0xa50,1516800,0x00],[42253,0xb50,1516800,0x00],[42253,0x940,300000,0x00],[42253,0xb40,300000,0x00],[42253,0x950,1516800,0x00],[42253,0xa40,300000,0x00] 09-13 21:54:41.570099 26971 26971 E Input_Track: [Input] Start <<<<<<<<<<<<<< 672362527 09-13 21:54:41.570538 26971 26971 E UAH_JNI : uah_event_acquire skip for id 0x3e8 09-13 21:54:41.570562 26971 26971 I [UAH_CLIENT]: UahEventAcquireOneWay, cmdid:303, pkg:none, identity:UahScrollListener 09-13 21:54:41.570692 2131 2206 I URCC_CORE_SERVER: [urccRequestQueueExec] urccRequest: handle: 42256, pkgName: com.android.vending, caller: OplusUAwareInputHelper, duration: 324, prio: 10002, said: EVENT_SWIPE_V, rs:1, res: [0x1010010,1017600],[0x1010020,940800],[0x1010030,1209600],[0x10100a0,1804800],[0x10100b0,2208000],[0x10100c0,2304000],[0x1010b10,4],[0x1010b20,3],[0x1010b30,1],[0x1010b90,4],[0x1010ba0,3],[0x1010bb0,1],[0x1010f80,70 95],[0x1010f90,50 50],[0x1011020,1],[0x1011070,2],[0x1011250,255],[0x1011730,99000000],[0x1030940,998400],[0x1030950,1459200],[0x1030a40,998400],[0x1030a50,1459200],[0x1030b40,998400],[0x1030b50,1459200],[0x1030fd0,1720] 09-13 21:54:41.570792 26971 26971 D ViewRootImplExtImpl: the up motion event handled by client, just return 09-13 21:54:41.571233 26971 26971 E Input_Track: [Input] Ends >>>>>>>>>>>>>>>> HANDLED 09-13 21:54:41.571546 26971 26971 W InputLog: VRI[AssetBrowserActivity] : debugInputEventFinished event:MotionEvent { action=ACTION_UP, actionButton=0, id[0]=2, x[0]=549.75, y[0]=1768.375, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=59346673, downTime=59346498, deviceId=3, source=0x1002, displayId=0, eventId=672362527 }, sEvent=DebugEvent [ type=2, action=1, downTime=59346498, eventTime=59346673, stateRecord=[2025-09-13 21:54:41.569|START_EVENT, 2025-09-13 21:54:41.569|ENQUEUE_EVENT|true|false, 2025-09-13 21:54:41.569|EarlyPostImeInputStage|0x0, 2025-09-13 21:54:41.570|NativePostImeInputStage|0x0, 2025-09-13 21:54:41.571|ViewPostImeInputStage|0xc, 2025-09-13 21:54:41.571|SyntheticInputStage|0xc, 2025-09-13 21:54:41.571|FINISH_EVENT|0xc], handleDetail=|Handle Touch in viewtree|mView handled=true ] 09-13 21:54:41.572325 2131 2206 I URCC_RES_MANAGER: [dumpResourceApplyInfo] urccResUpdate: CPU:[42256,0x10,1017600,0x00],[42256,0x20,940800,0x00],[42256,0xb90,4,0x00],[42256,0xa0,1804800,0x00],[42256,0x1730,99000000,0x00],[42256,0xc0,2208000,0x08],[42256,0x30,1209600,0x00],[42256,0x1250,255,0x00],[42256,0x1070,2,0x00],[42256,0x1020,1,0x00],[42256,0xbb0,1,0x00],[42256,0xba0,3,0x00],[42256,0xf90,50 50,0x00],[42256,0xf80,70 95,0x00],[42256,0xb30,1,0x00],[42256,0xb20,3,0x00],[42256,0xb10,4,0x00],[42256,0xb0,2208000,0x00] MEM:[42256,0xfd0,1720,0x00],[42256,0xb50,1459200,0x00],[42256,0xb40,998400,0x00],[42256,0xa50,1459200,0x00],[42256,0x940,998400,0x00],[42256,0xa40,998400,0x00],[42256,0x950,1459200,0x00] 09-13 21:54:41.572367 2131 2206 I URCC_RES_MANAGER: [dumpCpuOnline] urccCoreCtrl: [0x1010b90,4,42256,6] [0x1010ba0,3,42256,6] [0x1010bb0,1,42256,6] 09-13 21:54:41.575165 3391 7265 W InputLog: OMG_ThreeStrategy : onThreeFingers------- , reason=1, mCurrStatus=0 event = MotionEvent { action=ACTION_UP, actionButton=0, id[0]=2, x[0]=549.75, y[0]=1768.375, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=59346673, downTime=59346498, deviceId=3, source=0x1002, displayId=0, eventId=672362527 } 09-13 21:54:41.581768 7304 8008 D Launcher.IconCache: applyCacheEntry begin 09-13 21:54:41.582017 7304 8008 D Launcher.IconCache: applyCacheEntry end 09-13 21:54:41.584855 7304 8008 D BaseModelUpdateTask[u0]: bindUpdatedWidgets widgets size36 09-13 21:54:41.585623 3391 7244 D OplusGtxController: syncLinkLayerStats rssi:-47 09-13 21:54:41.587427 1099 1099 E lowmemorykiller: device memory 345251 free 25715 file 331439 09-13 21:54:41.590549 8062 8627 D Battery : DeepSleepRecord: recoardEvent :exit. cost 26 ms 09-13 21:54:41.590653 8062 8627 D Battery : ControllerCenter: list: [com.oplus.sau:data_check, com.oplus.sau:zip_check, com.oplus.sau:apk_check, com.heytap.market:store_download, com.heytap.market:check_upgrade] 09-13 21:54:41.599226 7908 8322 D CoexRfService: report RRC state:true 09-13 21:54:41.599695 26971 5553 E Finsky : [17242] [Counters] attempted to use a non-positive increment for: 4751 09-13 21:54:41.602401 2014 2164 E sensors-hal: send_brightness:978, light_iface: qmi connection closed 09-13 21:54:41.606793 14735 14735 I MultiDex: VM with version 2.1.0 has multidex support 09-13 21:54:41.607095 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607130 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607139 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607146 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607153 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607159 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607164 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607169 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607174 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607178 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607187 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607195 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607201 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607206 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607211 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607229 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607240 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607249 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607257 7396 7601 W PluginActionManager: handleQueryPlugins, not in mPrivilegedPlugins, pkgName=com.disney.wheresmywater2_goo 09-13 21:54:41.607365 14735 14735 I MultiDex: Installing application 09-13 21:54:41.607386 14735 14735 I MultiDex: VM has multidex support, MultiDex support library is disabled. 09-13 21:54:41.616955 1138 1138 E KeymasterUtils: IKMHal_sendCmd failed with rsp_header->status: -28 09-13 21:54:41.617008 1138 1138 E KeyMasterHalDevice: abort_operation 09-13 21:54:41.617013 1138 1138 E KeyMasterHalDevice: ret: -28 09-13 21:54:41.628481 7622 7647 I DCS>SdkProcessService[main#binder:7622_2]: init: appId=2 09-13 21:54:41.593339 5666 6798 I Finsky:background: [17531] CronetDownloader: onRedirectReceived 09-13 21:54:41.631182 7622 7647 D DCS>AppGlobalManager[main#binder:7622_2]: initClient: appId=2 09-13 21:54:41.631492 5666 14914 I Finsky:background: [17572] Wrote row to frosting DB: 1198 09-13 21:54:41.633060 3391 7244 D OIS : debug:handleMessage { when=-4ms what=1 target=com.oplus.server.wifi.wificapcenter.OplusInterconnectScene$OplusInterconnectSceneHandler } 09-13 21:54:41.633136 3391 7244 D OIS : debug:MSG_CHECK_INTERCONNECT_SCENE 09-13 21:54:41.636635 5666 14914 I Finsky:background: [17572] Wrote row to frosting DB: 1199 09-13 21:54:41.636820 3391 7244 D OplusGtxController: syncLinkLayerStats rssi:-48 09-13 21:54:41.638318 3391 3418 I AppFeature_provider: com.oplus.battery query feature:safecenter.startup.custom.autostart from app_feature table. 09-13 21:54:41.640745 7622 7647 D DCS>AppGlobalManager[main#binder:7622_2]: callModule: appId=2, caller=sdk_2, target=null, action=notifyStartUp 09-13 21:54:41.641488 2014 2164 E sensors-hal: send_brightness:978, light_iface: qmi connection closed 09-13 21:54:41.643799 3391 7244 D OplusSmartMCC: debug:handleMessage { when=-1ms what=1 target=com.oplus.server.wifi.p2p.OplusSmartMCC$OplusSmartMCCHandler } 09-13 21:54:41.643880 3391 7244 D OplusSmartMCC: debug:MSG_CHECK_MCC_STATE 09-13 21:54:41.643926 3391 7244 D OplusSmartMCC: debug:checkMCCStateReal:false, Cast:false, dpmsk:0, game:bg, as:[com.android.vending], as type:3, concurrent:false, sta:true, p2p:false 09-13 21:54:41.645605 7622 3213 D DCS>ContentProvider[main#binder:7622_7]: DcsContentProvider insert: statSId=440be412-c6a0-425b-9c20-5a0539c520a3 eventID=dcc_launch logMap={"b_app_id":"2","is_first_time":"0","dcs_version":"5.8.90.00","cost_time":"0","dcc_sdk_version":"1.0.17","launch_side":"1","req_session_id":"feed8c65-fe16-4200-b58c-3a9acd465f55"} logTag=launch appName=App Market appId=124200 ssoid=0 appPackage=com.heytap.market appIdStr=124200 appVersion=16.1.6_IN dataType=1006 09-13 21:54:41.646560 7622 7647 D DCS>DccServiceCallback[main#binder:7622_2]: DccServiceCallback action:notifyStartUp 09-13 21:54:41.647585 26971 5553 I Finsky : [17242] AIM: AppInfoManager-Perf > ItemModel > CacheSize=87, cacheHitCount=0, cacheMissCount=1, total appsWithNoServerDataCount=4. Missed in cache (limit 10) : [com.disney.wheresmywater2_goo] 09-13 21:54:41.647997 3391 8206 I AppFeature_provider: com.oplus.screenshot query feature:com.coloros.bootreg.flip_device from app_feature table. 09-13 21:54:41.648123 26971 5553 I Finsky : [17242] AIM: AppInfoManager-Perf > ItemModel > ItemStore Called 1 apps cacheOptions = REFRESH_LOCAL_CACHE 09-13 21:54:41.663152 3391 3391 W LoadedApk: System took : 254ms in onReceive of class com.android.server.content.ContentService$1 for action : android.intent.action.PACKAGE_ADDED 09-13 21:54:41.664572 26971 5553 I Finsky : [17242] AIM: ItemModel fetch - unauth(0), auth([vJqvkGlefhCsRwKIno-dkhtmUkj1Qq7uaFb41T8fTao]->1) 09-13 21:54:41.666276 7622 7684 D DCS>EventRulesTableHelper[main#dcs-thread-DcsWorker]: queryEventRulesList: finish. commonBeanList size: 2 09-13 21:54:41.666573 7622 7684 D DCS>StrategyManager[main#dcs-thread-DcsWorker]: getTrackType eventRule:EventRule(eventType=launch, eventId=dcc_launch, eventLevel=1, isRealTime=true, acceptNetType=ALL, trackType=8, dataType=0, headSwitch=15) 09-13 21:54:41.666631 7622 7684 D DCS>StrategyManager[main#dcs-thread-DcsWorker]: isNeedUpload: true, type: 2006, appID: 124200, logTag: launch, eventID: dcc_launch 09-13 21:54:41.666672 7622 7684 D DCS>BootMemoryUtil[main#dcs-thread-DcsWorker]: checkBootMemoryTestWindow result: false 09-13 21:54:41.666737 7622 7684 D DCS>AppVersionHelper[main#dcs-thread-DcsWorker]: preciseControlPackageDictionary is not include packageName=com.heytap.market 09-13 21:54:41.666771 7622 7684 D DCS>JsonProvider[main#dcs-thread-DcsWorker]: getCommonHeadV3 found [{"$brand":"realme","$model":"RMX5070","$platform":0,"$os_version":"V16.0.0","$rom_version":"RMX5070PRE_16.0.0.61(SP02EX01)","$android_version":"16","$sdk_package_name":"com.oplus.statistics.rom","$sdk_version":"5.8.90.00","$channel":"OS","$region":"IN","$region_mark":"IN","$multi_user_id":0,"$cloud_config_product_version":"2.4.3.1","$custom_head":{"os_properties":"otaVersion\u0002RMX5070PRE_11.F.02_2020_202509010925\u0001multi_user_id\u00020\u0001my_carrier\u0002empty"}}] in row [2] 09-13 21:54:41.666993 7622 7684 D DCS>PreciseControlManager[main#dcs-thread-DcsWorker]: dealRealTimePreciseControl start sampleEventKey=124200_launch_dcc_launch 09-13 21:54:41.669438 7622 7647 D DCS>SdkProcessService[main#binder:7622_2]: action: appId=2 09-13 21:54:41.670764 7622 7684 D DCS>PreciseControlRulesTableHelper[main#dcs-thread-DcsWorker]: queryForPreciseControlRuleBean: finish. PreciseControlRuleBean: null 09-13 21:54:41.671162 7622 7684 D DCS>PreciseControlManager[main#dcs-thread-DcsWorker]: dealRealTimePreciseControl end sampleEventKey=124200_launch_dcc_launch 09-13 21:54:41.673968 7622 14657 D DCS>AppGlobalManager[main#dcs-thread-dcsPool-627]: callModule: appId=2, caller=sdk_2, target=null, action=updateServicePermissions 09-13 21:54:41.675219 7622 14657 D DCS>DccServiceCallback[main#dcs-thread-dcsPool-627]: DccServiceCallback action:updateServicePermissions 09-13 21:54:41.676394 7622 7684 D DCS>CommonTableHelper[main#dcs-thread-DcsWorker]: insertData to db. CommonBean{AppId=124200, LogTag='launch', EventId='dcc_launch', isRealtime='true', headSwitch='15', trackType='8', eventTime='0', isPreData='0', ext='null'} Google Play商店下载应用完成后,进度条未更新,一直显示"finish download"
09-30
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值