Skip to content

Commit

Permalink
reverted a problematic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenArzt committed Jul 26, 2020
1 parent fb61c2e commit a11b27d
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,15 @@ public void setSootOptions(Options options, InfoflowConfiguration config) {
List<String> excludeList = new LinkedList<String>();
excludeList.add("java.*");
excludeList.add("sun.*");
// exclude classes of android.* will cause layout class cannot be
// loaded for layout file based callback analysis.
// excludeList.add("android.*");

// exclude classes of android.* will cause layout class cannot be
// loaded for layout file based callback analysis.

// 2020-07-26 (SA): added back the exclusion, because removing it breaks
// calls to Android SDK stubs. We need a proper test case for the layout
// file issue and then see how to deal with it.
excludeList.add("android.*");

excludeList.add("org.apache.*");
excludeList.add("org.eclipse.*");
excludeList.add("soot.*");
Expand Down

0 comments on commit a11b27d

Please sign in to comment.