allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.Sivakumar00:EasyCurrencyConverter:1.2.1'
}
//To get conversion rate:
double output = EasyCurrency.convertCurrency("inr","USD");
//To get conversion rate of specific value
double output=EasyCurrency.getCurrencyExchange("eur","inr",5);