This repository has been archived by the owner on Nov 11, 2023. It is now read-only.
Releases: PatilShreyas/EasyUpiPayment-Android
Releases · PatilShreyas/EasyUpiPayment-Android
EasyUpiPayment-Android v3.0.3
This release includes patch fixes.
- Provided
<query>
in library Manifest for intent and specific UPI packages to support devices having Android 11 and Above. - Fix
ActivityNotFoundException
crash occurring on Android 11 devices due to missing query intents.
EasyUpiPayment-Android v3.0.2
- Provided
<query>
in library Manifest to support Android 11 and Above. - Library made available from
mavenCentral()
. - Moved all classes from
com.*
package todev.*
package. Make sure to migrate the usage of package imports.
EasyUpiPayment-Android v3.0.1
This release fixes issue #67
Make Payee merchant code as required field. (This will be required parameter from this version as UPI payment will be only processed if payee account is a valid merchant account.)
If this parameter is not provided with EasyUpiPayment Builder
then it'll throw IllegalStateException
.
EasyUpiPayment-Android v3.0.0
- Moved to symantic versioning from this release.
- Migrated project codebase to the Kotlin.
- Changed callback methods from
PaymentStatusListener
. - Introduces a new method in
EasyUpiPayment.Builder
for setting a specific app for payment.
Visit documentation for more information about the latest version.
EasyUpiPayment-Android v2.2
Features of this release:
- [#34] - Getting transaction amount from
TransactionDetails
instance.
When the transaction is completed then you can retrieve transaction amount as below.
@Override
public void onTransactionCompleted(TransactionDetails transactionDetails) {
transactionDetails.getAmount()
}
- [#35] - Implemented system default app chooser to select the UPI app to pay with. In previous versions, it's using custom chooser implemented with
BottomSheetDialog
.
EasyUpiPayment-Android v2.1
This version fixes
- App crashing when paying using BHIM UPI app (#21).
EasyUpiPayment-Android v2.0
EasyUpiPayment-Android v1.1
This Release fixes a few bugs and has UI and other minor improvements.
EasyUpiPayment-Android v1.0
This is a stable release with some fixes.
EasyUpiPayment-Android v0.1-beta
This is the first release.