【发布时间】:2021-02-03 15:06:12
【问题描述】:
apply plugin: 'com.app.roadtonetherlands'
得到
未找到 ID 为“com.app.roadtonetherlands”的插件。
【问题讨论】:
apply plugin: 'com.app.roadtonetherlands'
得到
未找到 ID 为“com.app.roadtonetherlands”的插件。
【问题讨论】:
这看起来像旧语法
要么这个非内置插件com.app.roadtonetherlands 不存在,要么你需要指定从哪里下载
(How can the gradle plugin repository be changed?)
新的gradle语法https://docs.gradle.org/current/userguide/plugins.html 看起来像
plugins {
id 'com.example.hello'
}
无论如何,您都需要知道在哪里可以阅读有关此“com.app.roadtonetherlands”插件的文档
【讨论】: