Extras value in activity starter

what is the way to pass passwords like in this example, using activity starter

public void abcdPlayerPlayUri(String Title,String uri,String password){
Bundle bnd = new Bundle();
bnd.putString(“path”, uri);
bnd.putString(“secure”, password);
Intent intent = new Intent();
intent.setClassName(“com.abcd.player”,“com.abcd.player.main”);
intent.putExtras(bnd);
startActivityForResult(intent, 100);
}

see these Activity Starter examples https://puravidaapps.com/snippets.php#2activity
see also the documentation Using the Activity Starter

Taifun


Trying to push the limits! Snippets, Tutorials and Extensions from Pura Vida Apps by Taifun.