I have two application. I want to intent to the second one from the first one. But the second application must be launched from first one. So i have to hide the second one's icon.
When i delete the category tag from the second one's manifest.xml, icon is disappearing. But this time i can't launch the second app from the first app with intent.
This is how i tried to intent:
Intent openvideo = getPackageManager().getLaunchIntentForPackage("air.deneme");
startActivity(openvideo);
How can i handle it?
Both of the applications are view based, they aren't background applications.