<div dir="ltr">Hi,<div><br></div><div>Did FlowDroid miss collecting the callbacks from Loader ? &nbsp;For the following (simplified) code, where an activity implements the LoaderManager.LoaderCallback, there are three callbacks, onCreateLoader(), onLoaderReset() and loadInBackground(), as marked in bold. However FlowDroid does not reach any of them. I guess the reason is LoaderManager class is not included in the stub jar ?&nbsp;<br></div><div><br></div><div><div><font face="courier new, monospace"></font><div><font face="courier new, monospace"><font color="#38761d">public class</font> NationalAlertsWizardActivity <font color="#38761d">extends</font> ActionBarActivity <font color="#38761d">implements </font>LoaderManager.LoaderCallback&lt;DataContainer&gt; {</font></div></div><div><font face="courier new, monospace"><br></font></div><div><div><font face="courier new, monospace">&nbsp; &nbsp; <font color="#6aa84f">public</font> Loader&lt;DataContainer&gt; <b>onCreateLoader</b>(int paramInt, Bundle paramBundle) {</font></div></div><div><font face="courier new, monospace">&nbsp; &nbsp; &nbsp; ....</font></div><div><font face="courier new, monospace">&nbsp; &nbsp; }</font></div><div><font face="courier new, monospace"><br></font></div><div><font face="courier new, monospace">&nbsp; &nbsp; <font color="#38761d">public</font> void <b>onLoaderReset</b>(Loader&lt;DataContainer&gt; paramLoader) {</font></div><div><font face="courier new, monospace">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....</font></div><div><font face="courier new, monospace">&nbsp; &nbsp; }<br></font></div><div><div><font face="courier new, monospace">&nbsp;</font></div><div><font face="courier new, monospace">&nbsp; &nbsp; <font color="#38761d">public</font> NationalAlertsWizardActivity.DataContainer <b>loadInBackground</b>() {</font></div></div><div><font face="courier new, monospace">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...</font></div><div><font face="courier new, monospace">&nbsp; &nbsp; }</font></div><div><font face="courier new, monospace">}</font></div><div><br></div><div><div>To include these callbacks into my analysis, my approach is to manually search the implementers of LoaderManager and collect them by scene.v().getMethod(). Is it the right way to do so ?</div></div><div><br></div><div>Thanks a lot !</div><div><br></div><div><br></div></div></div>