Open ghost opened 2 years ago
Hi @DSeverine,
Do you still have the problem? I just tested with your code snippet and could not reproduce the error.
Let me know,
I still have this problem.
If you don't have this problem, that may be due to two reasons.
First, I'm initializing Soot myself before using FlowDroid and COAL. I have probably missed an option.
Options.v().set_allow_phantom_refs(true);
Options.v().set_prepend_classpath(true);
Options.v().set_process_multiple_dex(true);
Options.v().set_search_dex_in_archives(true);
Options.v().set_whole_program(true);
Options.v().set_android_jars(androidDir);
Options.v().set_output_format(Options.output_format_jimple);
Options.v().set_process_dir(Collections.singletonList(apk));
Options.v().set_src_prec(Options.src_prec_apk);
Options.v().set_no_writeout_body_releasing(true);
Second, I have made a few modifications to COAL to update Soot version to 4.3.0.
Thanks a lot for your anwser,
Séverine
Hello,
I'm using COAL on Android applications. Before launching it, I use FlowDroid to get call graph.
On many apps, I encounter the following issue :
Here is a snippet to reproduce it :
Best,
Séverine