AutoStarter icon indicating copy to clipboard operation
AutoStarter copied to clipboard

Honor 9C - Nothing was opened

Open adolgiy opened this issue 4 years ago • 8 comments

adolgiy avatar Jun 09 '20 18:06 adolgiy

@adolgiy I would urge you to follow the same steps mentioned in https://github.com/judemanutd/AutoStarter/issues/47#issuecomment-651002811 and post the result here in order to get the latest intent.

judemanutd avatar Jun 29 '20 14:06 judemanutd

@judemanutd i've got about 8k lines. should I search for something specific?

adolgiy avatar Jun 29 '20 14:06 adolgiy

@judemanutd this line looks suitable: ActivityRecord{7bf58df u0 com.huawei.systemmanager/.power.ui.PowerWholeCheckActivity t869}

adolgiy avatar Jun 29 '20 15:06 adolgiy

The basic idea here is trial and error until you get the screen that opens up the activity. For example in case of a Xiaomi phone you have a package name com.miui.securitycenter and a component name in that package com.miui.permcenter.autostart.AutoStartManagementActivity. Once you have those 2, you basically try

val intent = Intent()
intent.component = ComponentName("com.miui.securitycenter", "com.miui.permcenter.autostart.AutoStartManagementActivity")
context.startActivity(intent)

In your case you could try

val intent = Intent()
intent.component = ComponentName("com.huawei.systemmanager", "power.ui.PowerWholeCheckActivity")
context.startActivity(intent)

Looks like something is missing here with the power.ui.PowerWholeCheckActivity, that doesn't look like the complete component name but you get the idea, since you have access to the device, you can spend a few minutes getting the combination right. Do create a PR once you get it so others can benefit from it as well.

judemanutd avatar Jun 29 '20 15:06 judemanutd

meh, something is really missing 😞

adolgiy avatar Jul 02 '20 08:07 adolgiy

Hey, did you try the option I suggested for Huawei? I mean this: "com.huawei.systemmanager.startupmgr.ui.StartupNormalAppListActivity" I'm not entirely certain and I don't have a Honor at hand right now, but I believe it worked the same as on Huawei devices.

NoHarmDan avatar Aug 21 '20 12:08 NoHarmDan

sorry for delay, but my temporary access to that Honor was suspended if it is acceptable, let the issue be open, may be I'll get access later again

adolgiy avatar Aug 21 '20 12:08 adolgiy

Hello! I've found missing component for Honor 10 with EmUi 9: "com.huawei.systemmanager", "com.huawei.systemmanager.startupmgr.ui.StartupNormalAppListActivity"

ponomarevlm avatar Sep 11 '21 14:09 ponomarevlm