* [android] fix the wrong path of check-style.xml in build.gradle
Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/e9f7b9a6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/e9f7b9a6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/e9f7b9a6 Branch: refs/heads/master Commit: e9f7b9a6bbd144a0cded385deee7296dd712aa93 Parents: 0c8e485 Author: yxping <[email protected]> Authored: Tue Jun 5 14:16:06 2018 +0800 Committer: YorkShen <[email protected]> Committed: Thu Jun 7 15:18:38 2018 +0800 ---------------------------------------------------------------------- android/sdk/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/e9f7b9a6/android/sdk/build.gradle ---------------------------------------------------------------------- diff --git a/android/sdk/build.gradle b/android/sdk/build.gradle index a2d447a..d8ce3bc 100755 --- a/android/sdk/build.gradle +++ b/android/sdk/build.gradle @@ -21,7 +21,7 @@ if(!disableCov.toBoolean()){ } task checkstyle(type: Checkstyle) { - configFile file("${project.rootDir}/config/quality/checkstyle.xml") // Where my checkstyle config is... + configFile file("${project.rootDir}/sdk/config/quality/checkstyle.xml") // Where my checkstyle config is... // configProperties.checkstyleSuppressionsPath = file("${project.rootDir}/config/quality/checkstyle/suppressions.xml").absolutePath // Where is my suppressions file for checkstyle is... source 'src' include '**/*.java'
