Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On a Huwaie Ascend, when we walk through the settings menu:

Settings -> SD card & phone storage -> Software Upgrade -> SD card Upgrade

We are then brought to a screen where the user can upgrade.

And then using adb logcat we see this:

 Starting activity: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.SystemUpgradeCheck }

We can use adb to simulate this by calling:

adb shell am start -n com.android.settings/.SystemUpgradeCheck

This is successful, and we see the screen.

However, when we try to call this from within an activity like this:

    Intent i = new Intent(Intent.ACTION_MAIN);
    i.setComponent(new ComponentName("com.android.settings", ".SystemUpgradeCheck"));
    startActivity(i);

We get this error:

Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.android.settings/.SystemUpgradeCheck}; have you declared this activity in your AndroidManifest.xml?

What can we do to overcome this? Am I calling the intent wrong?

share|improve this question

1 Answer

up vote 1 down vote accepted

Figured it out :)

Context foreignContext = createPackageContext("com.android.settings", Context.CONTEXT_IGNORE_SECURITY | Context.CONTEXT_INCLUDE_CODE);
Class<?> yourClass = foreignContext.getClassLoader().loadClass("com.android.settings.SystemUpgradeCheck");

Intent intent = new Intent(foreignContext, yourClass);
startActivity(intent);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.