I want to search the Galaxy S-Finder app from an intent from an app. I know the package name. "com.samsung.android.app.galaxyfinder"
I tried
String bobo = thetext.getText().toString();
Intent intent = new Intent(Intent.ACTION_SEARCH);
intent.setPackage("com.samsung,android.app.galaxyfinder");
intent.putExtra("query", bobo);
startActivity(intent);
to no avail. I tried just ACTION_VIEW in there too to no avail. Does anyone know what I can do?