Skip to content

Commit

Permalink
Version updated to 7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
himgupta229 committed May 14, 2018
1 parent faea0d7 commit 92141c0
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
26 changes: 22 additions & 4 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.payu.custombrowser"
android:versionCode="23"
android:versionName="7.1.3">
android:versionCode="26"
android:versionName="7.2.1">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission
Expand All @@ -17,8 +17,26 @@

<service android:name=".services.SnoozeService" />

<activity android:name=".upiintent.PaymentResponseActivity"
android:theme="@style/Theme.Transparent"/>
<activity
android:name=".upiintent.PaymentResponseActivity"
android:theme="@style/Theme.Transparent" />
<activity android:name=".PreLollipopPaymentsActivity">
<intent-filter>
<data android:scheme="${applicationId}.success" />
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
<data android:scheme="${applicationId}.failure" />
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
<activity android:name=".PrePaymentsActivity" />
</application>

</manifest>
Binary file modified CustomBrowser-release.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
### Integration of Custom Browser (Latest version 7.1.3)
### Integration of Custom Browser (Latest version 7.2.1)
Binary file modified libs/classes.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
<string name="cb_process_otp">process_otp</string>
<string name="cb_detect_bank">detectBank</string>
<string name="cb_fill_otp">fillOTP</string>
<string name="cb_check_visibility_cajs">checkVisibilityCatchAllJSCall</string>
<string name="cb_catchAll_success_msg">catchAllSuccessMsg</string>
<string name="cb_init">init</string>
<string name="cb_result">result</string>
<string name="cb_regenerate">regenerate</string>
Expand Down

0 comments on commit 92141c0

Please sign in to comment.