implementation fileTree (dir: 'libs', include: ['*.jar', '*.aar'])出现了Unexpected tokens (use ';' to separate expressions on the same line)
时间: 2024-01-15 08:19:11 浏览: 182
根据提供的引用内容,你遇到了一个语法错误。在Groovy中,如果在同一行上有多个表达式,需要使用分号";"将它们分开。在你的代码中,你可以尝试使用分号将表达式分开,如下所示:
```groovy
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']);
```
这样做可以解决"Unexpected tokens (use ';' to separate expressions on the same line)"的错误。
阅读全文