You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Amandroid is not detecting data flows to sinks that goes to anonymous innerclass from a source defined outside the innerclass. Did somebody face the same issue or can somebody tell me what to fix? Thank you.
I am attaching a sample code for testing. The source is findViewById and sink is Log.i
final EditText et = (EditText)findViewById(R.id.editText);
final Button bt = (Button)findViewById(R.id.button);
bt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String text = et.getText().toString();
Log.d(text,text);
}
});
The text was updated successfully, but these errors were encountered:
Amandroid is not detecting data flows to sinks that goes to anonymous innerclass from a source defined outside the innerclass. Did somebody face the same issue or can somebody tell me what to fix? Thank you.
I am attaching a sample code for testing. The source is findViewById and sink is Log.i
The text was updated successfully, but these errors were encountered: