i start an android app with "adb.exe shell" as follow and this works fine:
shell am start -a android.intent.action.VIEW -n mypackage/.myActivity
How can I provide a parameter to the command and how can I read it in my app ?
shell am start -a android.intent.action.VIEW -n mypackage/.myActivity <PARAMETER>
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String myParameter=getHowtoReadaParamter();