Skip to content

Commit a11b27d

Browse files
committed
reverted a problematic fix
1 parent fb61c2e commit a11b27d

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

soot-infoflow-android/src/soot/jimple/infoflow/android/config/SootConfigForAndroid.java

+9-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,15 @@ public void setSootOptions(Options options, InfoflowConfiguration config) {
2525
List<String> excludeList = new LinkedList<String>();
2626
excludeList.add("java.*");
2727
excludeList.add("sun.*");
28-
// exclude classes of android.* will cause layout class cannot be
29-
// loaded for layout file based callback analysis.
30-
// excludeList.add("android.*");
28+
29+
// exclude classes of android.* will cause layout class cannot be
30+
// loaded for layout file based callback analysis.
31+
32+
// 2020-07-26 (SA): added back the exclusion, because removing it breaks
33+
// calls to Android SDK stubs. We need a proper test case for the layout
34+
// file issue and then see how to deal with it.
35+
excludeList.add("android.*");
36+
3137
excludeList.add("org.apache.*");
3238
excludeList.add("org.eclipse.*");
3339
excludeList.add("soot.*");

0 commit comments

Comments
 (0)