diff --git a/README.md b/README.md index 2ff0f3f..0fd0d9a 100755 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ dependencies { ```ShellSession git clone https://github.com/REAndroid/ARSCLib.git cd ARSCLib -./gradlew fatJar +./gradlew jar # Built jar will be placed ./build/libs/ARSCLib-x.x.x.jar ``` diff --git a/build.gradle b/build.gradle index f72b3f1..4d5b138 100755 --- a/build.gradle +++ b/build.gradle @@ -40,9 +40,5 @@ jar { exclude('com/reandroid/test/**') } -task fatJar(type: Jar) { - from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } - with jar -}