I am getting an ActivityNotFoundException in the following code:
ActivityNotFoundException
Main.java
Intent intent = new Intent(); intent.setAction(\"com.tes
To launch an activity by a string definition, use:
Intent intent = new Intent(); intent.setComponent( new ComponentName("com.app", "com.app.activity.TheActivity")); startActivity(intent);