Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #121 from PatilShreyas/v3.0.3-dev
Browse files Browse the repository at this point in the history
Release v3.0.3
  • Loading branch information
PatilShreyas authored Jun 29, 2021
2 parents f2b170c + 3a6991d commit 066a712
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 6 deletions.
14 changes: 14 additions & 0 deletions EasyUpiPayment/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,24 @@
package="dev.shreyaspatil.easyupipayment">

<queries>
<!-- View Intent for UPI apps -->
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="upi" />
</intent>

<!-- Chooser Intent for UPI apps -->
<intent>
<action android:name="android.intent.action.CHOOSER" />
<data android:scheme="upi" />
</intent>

<!-- Package Specific UPI Apps -->
<package android:name="in.amazon.mShop.android.shopping" />
<package android:name="in.org.npci.upiapp" />
<package android:name="com.google.android.apps.nbu.paisa.user" />
<package android:name="com.phonepe.app" />
<package android:name="net.one97.paytm" />
</queries>

<application>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Easy UPI Payment - Android Library 📱💳

![Bintray](https://img.shields.io/bintray/v/patilshreyas/maven/com.shreyaspatil:EasyUpiPayment?style=flat-square)
![Maven Central](https://img.shields.io/maven-central/v/dev.shreyaspatil.EasyUpiPayment/EasyUpiPayment?label=mavenCentral)
![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg)

### [Visit official documentation for the details](https://eupipay-docs.netlify.app/)
Expand Down
Binary file modified app/app-debug.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

// EasyUpiPayment Library
implementation 'dev.shreyaspatil.EasyUpiPayment:EasyUpiPayment:3.0.2'
implementation 'dev.shreyaspatil.EasyUpiPayment:EasyUpiPayment:3.0.3'

// implementation project(path: ':EasyUpiPayment')
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.16.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.4.30")
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Easy UPI Payment - Android Library

![Bintray](https://img.shields.io/bintray/v/patilshreyas/maven/com.shreyaspatil:EasyUpiPayment?style=flat-square)
![Maven Central](https://img.shields.io/maven-central/v/dev.shreyaspatil.EasyUpiPayment/EasyUpiPayment?label=mavenCentral)
![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg)
![Github Followers](https://img.shields.io/github/followers/PatilShreyas?label=Follow&style=square)
![GitHub stars](https://img.shields.io/github/stars/PatilShreyas/EasyUpiPayment-Android?style=square)
Expand Down
8 changes: 8 additions & 0 deletions docs/pages/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ You can see [GitHub releases](https://github.com/PatilShreyas/EasyUpiPayment-And

---

## _v3.0.3_ (2021-06-29)

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.


## _v3.0.2_ (2021-03-18)
This release includes minor additions.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android.enableJetifier=true
# Maven Publish Details
GROUP=dev.shreyaspatil.EasyUpiPayment
POM_ARTIFACT_ID=EasyUpiPayment
VERSION_NAME=3.0.2
VERSION_NAME=3.0.3
POM_NAME=EasyUpiPayment-Android
POM_DESCRIPTION=Android Library to integrate UPI payment service easily in your Android app.
POM_INCEPTION_YEAR=2021
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

0 comments on commit 066a712

Please sign in to comment.