diff --git a/README.md b/README.md index acd4a521e..8b6acbe35 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,10 @@ Some other examples of dead code: * unreferenced assignments - assigning registers and not using them * unreached / unreachable instructions - `if (false) { dead_code(); }` +# Further Reading + +* [Dalvik Virtual Execution with SmaliVM](http://calebfenton.github.io/2016/04/30/dalvik-virtual-execution-with-smalivm/) + # License This tool is available under a dual license: a commercial one suitable for closed source projects and a GPL license that can be used in open source software. diff --git a/build.gradle b/build.gradle index 01c6a4cc9..9b87341cf 100644 --- a/build.gradle +++ b/build.gradle @@ -76,7 +76,7 @@ subprojects { maxParallelForks = 2 minHeapSize = '256m' maxHeapSize = '1500m' - forkEvery = 20 + forkEvery = 10 } // This is just to show off API usage. No tests needed.