-
Notifications
You must be signed in to change notification settings - Fork 317
Open
Description
Hi,
Consider the following case:
`
public class MainActivity extends AppCompatActivity {
private Button btn1;
private final View.OnClickListener onClickListener = v -> onClick2(v);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn1 = findViewById(R.id.button2);
btn1.setOnClickListener(onClickListener);
}
public void onClick2(View v ){
...
}
}
`
Why flowdroid cannot add the callback onCLick2 to the callgraph and perform analysis over it?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels