I'm pretty new to android and I am trying to import a library into my project (I'm using eclipse), specifically https://github.com/alamkanak/Android-Week-View. In the read me it gives instructions on how to import it to your project saying to "grab via maven":
<dependency>
<groupId>com.github.alamkanak</groupId>
<artifactId>android-week-view</artifactId>
<version>1.1.7</version>
<type>aar</type>
</dependency>
and grab via gradle:
compile 'com.github.alamkanak:android-week-view:1.1.7'
I haven't had experience or any previous knowledge of these two terms, tried to google it and couldn't find how to do that or what it means. If anyone could provide some info or help on how to do that that would be great, any help is appreciated.