Search code examples
android-intentlaunchbatteryandroid-8.0-oreohuawei-mobile-services

Intent to Battery Launch section in Huawei with Oreo


I need to redirect the Huawei users with Android 8 "Oreo" to the new section Settings -> Battery -> Launch

Anyone knows how to build the intent or where I could find the information (package and class) to create it?


Solution

  • I was facing the same problem and using accessibility I have try to get the class name or activity name to pass in intent and open the Settings -> Battery -> Launch

    tested on Oreo Huawei Honor 9 Lite:

    Intent intent = new Intent();
    intent.setClassName("com.huawei.systemmanager", "com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity");
    startActivity(intent);
    

    Its a little late but maybe can help someone and save time.