You must declare all your actions and services (and everything else, like BroadcastReceivers) in the AndroidManifest.xml file. You cannot use them otherwise.
EDIT: as per CommonsWare comment, adding android: exported = "false" to the AndroidManifest.xml declaration of this action will prevent your secondary activity from starting outside your application.
source
share