Fixes the call to CommCare, adding the form-id into the Workflow Intent call.

parent baa2b02f
...@@ -36,7 +36,7 @@ public class SelectUserActivity extends Activity { ...@@ -36,7 +36,7 @@ public class SelectUserActivity extends Activity {
@Override @Override
public void onClick(View v) { public void onClick(View v) {
Intent i = new Intent("org.commcare.dalvik.action.CommCareSession"); Intent i = new Intent("org.commcare.dalvik.action.CommCareSession");
String sssd = "COMMAND_ID" + " " + "root"; String sssd = "COMMAND_ID" + " " + "root" + " " + "COMMAND_ID" + " " + "m0-f0";
i.putExtra("ccodk_session_request", sssd); i.putExtra("ccodk_session_request", sssd);
SelectUserActivity.this.startActivity(i); SelectUserActivity.this.startActivity(i);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment