I am trying to include a ViewPagerIndicator in my project and I would rather use the Maven dependency rather than import the Android library project. There is some code sent for maven
<dependency>
<groupId>com.viewpagerindicator</groupId>
<artifactId>library</artifactId>
<version>2.4.1</version>
<type>apklib</type>
</dependency>
and inside the sample project this code is in the pom.xml file, but I don't have this file. Is it possible to translate the above code into a build.gradle file? Or can I just create a pom.xml file and put it in my project?
source
share