I just need to run the application from my code, such as Skype, or another. I read some topic on the Internet, but I have no solution. I tried this method:
Intent startApp = new Intent("com.android.gesture.builder");
startActivity(startApp);
I wrote this in try / catch blokk and LogCat told me: ApplicationNotFound exception handled by Intent. I read the "Hello" tutorial on the Android Developers website, but it is too complicated for my solution ... I can not register the launch of this application in the manifest file. I think I need to implement a new class that extends from Activity, and implement the code above and try again? Please help me how can I launch another application from my main activity easily ...
source
share