Can't open Activity from other module

7.2k Views Asked by At

I've added a reference to a new module and try to open an Activity from it. It throws an Exception that says:

android.content.ActivityNotFoundException: Unable to find explicit activity class{
com.giljulio.imagepicker.ui/com.giljulio.imagepicker.ui.ImagePickerActivity };

have you declared this activity in your AndroidManifest.xml?

Do I need to add anything else beside reference the new module?

3

There are 3 best solutions below

1
On

You have to define in gradle dependencies(in module where you want to call another module activity):

dependencies{
     ...
     compile project(':yourModuleName')
     ...
}

After adding this sync the gradle and now can you use the activity in the module.

0
On

User like this. This will help you

Intent intent = null;
try {
    intent = new Intent(this, 
       Class.forName("ir.test.testlibary1.HelloWorldActivity"));
    startActivity(intent);
} catch (ClassNotFoundException e) {
    e.printStackTrace();
}
0
On

Ok, so I am a few years late.

The issue is not that you don't have the gradle dependency as @arpit suggested, it seems you report a runtime exception. Also, what @Aman suggested will help with the handling the exception, it will just not help you start the activity.

If understood correctly, you have a multi-module app (let's say A-app module and B-lib module) and need to call another lib-module(C) from one B.

If that is the case, you need to declare that library's activity(C) in your module's(B) Manifest.xml, inside the tag.

If it has not already been setup, you also need to enable manifest merger.