banglanumeralutil-1.0.1.jar
Step 1: Create a libs folder in your project
Place your .jar file inside libs/your-library.jar.
Step 2: Add the Dependency
For Maven
Modify your pom.xml to include the .jar from libs:
<dependency>
<groupId>com.acesif</groupId>
<artifactId>banglanumeralutil</artifactId>
<version>1.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/banglanumeralutil-1.0.1.jar</systemPath>
</dependency>For Gradle
dependencies {
implementation files('libs/banglanumeralutil-1.0.1.jar')
}