Is there a problem with Fax's capability to identify Intent extra values or am I not running Fax correctly? On my end, I can use Fax to identify Intent action but just not any of the Intent extra values.
For example, the following code:
Intent dis = getIntent();if (dis.getStringExtra("str_extraa").startsWith("che")) {System.out.println("hello2");initView(dis);}
The following Intent attributes is generated:
null;;null;;null;;null;;String->str_extraa->999999999999999999999999999999999999999999999999999
And I noticed that 999999999999999999999999999999999999999999999999999 is the default value Fax uses (i.e., it does not come from Z3's output)
Is there a problem with Fax's capability to identify Intent extra values or am I not running Fax correctly? On my end, I can use Fax to identify Intent action but just not any of the Intent extra values.
For example, the following code:
Intent dis = getIntent();
if (dis.getStringExtra("str_extraa").startsWith("che")) {
System.out.println("hello2");
initView(dis);
}
The following Intent attributes is generated:
null;;null;;null;;null;;String->str_extraa->999999999999999999999999999999999999999999999999999
And I noticed that 999999999999999999999999999999999999999999999999999 is the default value Fax uses (i.e., it does not come from Z3's output)