Hey guys what's up?
So as I said in the title. I'm trying to launch dropbox app from my app in the folder created by my app. How can I do that?
PackageManager pm = getApplicationContext().getPackageManager();
Intent intent = pm.getLaunchIntentForPackage("com.dropbox.android");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
This code launchs DropBox.
Best regards,
José.