I use this library in my android application. ( https://github.com/yazeed44/MultiImagePicker )
So far, I have added it to my project as follows:
compile 'net.yazeed44.imagepicker:imagepicker:1.3.0'
The import problem of this method, as far as I know, cannot override any code, because after creating the project I will lose all the possibilities. (I need to change the code)
For this reason, I downloaded the source code and I imported the project as a module with this name: 'imagepicker'
After that, I added this line to my build.gradle application:
compile project(':imagepicker')
and this is for my .gradle settings (Android Studio did it)
include ':app', ':imagepicker'
After that, I try to start the project, and Android studio shows this error:
Gradle 'Project' project refresh failed Error:Plugin with id 'com.github.dcendents.android-maven' not found.
I do not know what to do. thanks in advance
Borja source share