11

I use the following library to add material design to my android project
https://github.com/navasmdc/MaterialDesignLibrary

But after importing it as a module, I get the following error. How can I fix it

Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found.
salih kallai
  • 879
  • 2
  • 13
  • 34

4 Answers4

15

First of all you can use this library as dependency simply adding to your module/build.gradle this dependency:

dependencies {
    compile 'com.github.navasmdc:MaterialDesign:1.5@aar'
}

If you want to import locally as module, you have to add this part in your module/build.gradle: (this part is added in the top-level file in the library)

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.+'
        classpath 'org.codehaus.groovy:groovy-backports-compat23:2.3.5'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
        classpath 'com.github.dcendents:android-maven-plugin:1.2'
    }
}

Pay attention that this library is not updated with the last support libraries, and doesn't use the new design support library.

Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
9

Add these lines in project.gradle dependencies:

    classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
    classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
Deepti
  • 934
  • 12
  • 18
6

If you add:

classpath 'com.github.dcendents:android-maven-plugin:1.2'

it does not work some times, so add:

classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

To complete, add the following lines into importing module's build.gradle file.

buildscript { 

    repositories {
        mavenCentral()
        jcenter()
    }

    dependencies {
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
    }
}

enjoy coding.

Rick
  • 1,177
  • 1
  • 19
  • 27
saibaba vali
  • 2,641
  • 1
  • 17
  • 17
0

Import the @arr file in module dependency

Salauddin Gazi
  • 1,497
  • 1
  • 13
  • 18