I think that it should be possible to get all the activities from ‘third-party’ application, described in the manifest file.
I can’t figure out how.
for example:
List<Activity> aList = packManager.getActivitiesForPackage("package.name");
thanks in advance!
You should be able to do just that using the PackageManager‘s
getPackageArchiveInfo()using theGET_ACTIVITIESflag. I have not tried it though