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

Commit 066a712

Browse files
authored
Merge pull request #121 from PatilShreyas/v3.0.3-dev
Release v3.0.3
2 parents f2b170c + 3a6991d commit 066a712

File tree

9 files changed

+28
-6
lines changed

9 files changed

+28
-6
lines changed

EasyUpiPayment/src/main/AndroidManifest.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,24 @@
33
package="dev.shreyaspatil.easyupipayment">
44

55
<queries>
6+
<!-- View Intent for UPI apps -->
7+
<intent>
8+
<action android:name="android.intent.action.VIEW" />
9+
<data android:scheme="upi" />
10+
</intent>
11+
12+
<!-- Chooser Intent for UPI apps -->
613
<intent>
714
<action android:name="android.intent.action.CHOOSER" />
815
<data android:scheme="upi" />
916
</intent>
17+
18+
<!-- Package Specific UPI Apps -->
19+
<package android:name="in.amazon.mShop.android.shopping" />
20+
<package android:name="in.org.npci.upiapp" />
21+
<package android:name="com.google.android.apps.nbu.paisa.user" />
22+
<package android:name="com.phonepe.app" />
23+
<package android:name="net.one97.paytm" />
1024
</queries>
1125

1226
<application>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Easy UPI Payment - Android Library 📱💳
66

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

1010
### [Visit official documentation for the details](https://eupipay-docs.netlify.app/)

app/app-debug.apk

-2.62 MB
Binary file not shown.

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies {
3737
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
3838

3939
// EasyUpiPayment Library
40-
implementation 'dev.shreyaspatil.EasyUpiPayment:EasyUpiPayment:3.0.2'
40+
implementation 'dev.shreyaspatil.EasyUpiPayment:EasyUpiPayment:3.0.3'
4141

4242
// implementation project(path: ':EasyUpiPayment')
4343
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
mavenCentral()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.1.3'
11+
classpath 'com.android.tools.build:gradle:4.2.1'
1212
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.16.0'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.4.30")

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Easy UPI Payment - Android Library
22

3-
![Bintray](https://img.shields.io/bintray/v/patilshreyas/maven/com.shreyaspatil:EasyUpiPayment?style=flat-square)
3+
![Maven Central](https://img.shields.io/maven-central/v/dev.shreyaspatil.EasyUpiPayment/EasyUpiPayment?label=mavenCentral)
44
![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg)
55
![Github Followers](https://img.shields.io/github/followers/PatilShreyas?label=Follow&style=square)
66
![GitHub stars](https://img.shields.io/github/stars/PatilShreyas/EasyUpiPayment-Android?style=square)

docs/pages/changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ You can see [GitHub releases](https://github.com/PatilShreyas/EasyUpiPayment-And
44

55
---
66

7+
## _v3.0.3_ (2021-06-29)
8+
9+
This release includes patch fixes.
10+
11+
- Provided `<query>` in library Manifest for intent and specific UPI packages to support devices having _Android 11 and Above_.
12+
- Fix `ActivityNotFoundException` crash occurring on Android 11 devices due to missing query intents.
13+
14+
715
## _v3.0.2_ (2021-03-18)
816
This release includes minor additions.
917

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android.enableJetifier=true
2020
# Maven Publish Details
2121
GROUP=dev.shreyaspatil.EasyUpiPayment
2222
POM_ARTIFACT_ID=EasyUpiPayment
23-
VERSION_NAME=3.0.2
23+
VERSION_NAME=3.0.3
2424
POM_NAME=EasyUpiPayment-Android
2525
POM_DESCRIPTION=Android Library to integrate UPI payment service easily in your Android app.
2626
POM_INCEPTION_YEAR=2021

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

0 commit comments

Comments
 (0)