1
apply plugin: 'com.app.roadtonetherlands'  

and get

Plugin with id 'com.app.roadtonetherlands' not found.

Paul Verest
  • 60,022
  • 51
  • 208
  • 332

1 Answers1

0

This looks like older syntax

Either this non-built-in plugin com.app.roadtonetherlands does not exist, or you need to specify where it should be dowloaded from (How can the gradle plugin repository be changed?)

New gradle syntax https://docs.gradle.org/current/userguide/plugins.html looks like

plugins {
    id 'com.example.hello'
}

In any case you need to know where to read docs about this 'com.app.roadtonetherlands' plugin

Paul Verest
  • 60,022
  • 51
  • 208
  • 332