I created an aar and i added it to my project as an module. in this module i have a HelloWorldActivity that i want to run.
my module manifest looks like this.
Intent intent = new Intent(); intent.setClassName(context.getPackageName(), "ir.sibvas.testlibary1.HelloWorldActivity"); startActivity(intent);