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
When I use FlowDroid to analyze some older versions of APK files, it ignores all the calls within the onCreate function. The output call graph only contains some simple dummy main methods, and the Jimple file does not include the body of onCreate. Could you please explain why this happens? Below is the simple source code of this APK file.
The body of MainActivity.onCreate should be loaded. If that is not the case, I would need the APK file to debug.
Not having any outgoing callgraph edges for the method calls inside onCreate is expected, though. The Android platform JARs only contain stubs of the Android API methods anyway, so we exclude that code entirely to impove performance. Consequently, the calls in onCreate don't have a callee. Technically they call a phantom method. Keep in mind that the callee in the platform JAR would be useless anyway.
FlowDroid applies summaries to model the effect of API methods on taints.
When I use FlowDroid to analyze some older versions of APK files, it ignores all the calls within the onCreate function. The output call graph only contains some simple dummy main methods, and the Jimple file does not include the body of onCreate. Could you please explain why this happens? Below is the simple source code of this APK file.
The text was updated successfully, but these errors were encountered: