Skip to content

Commit

Permalink
Version Updated to 7.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shahbaz-payu committed Apr 1, 2020
1 parent 4df17fc commit 60cfc3b
Show file tree
Hide file tree
Showing 56 changed files with 281 additions and 342 deletions.
31 changes: 17 additions & 14 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,43 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.payu.custombrowser"
android:versionCode="40"
android:versionName="7.6.0">
android:versionCode="41"
android:versionName="7.6.1" >

<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="27" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!--Permission Disabled -->
<!--<uses-permission-->
<!--android:name="android.permission.RECEIVE_SMS"-->
<!--android:protectionLevel="signature" />-->

<application android:usesCleartextTraffic="false">
<!-- Permission Disabled -->
<!-- <uses-permission -->
<!-- android:name="android.permission.RECEIVE_SMS" -->
<!-- android:protectionLevel="signature" /> -->
<application android:usesCleartextTraffic="false" >
<activity
android:name=".CBActivity"
android:name="com.payu.custombrowser.CBActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />

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

<activity
android:name=".PreLollipopPaymentsActivity">
<service android:name="com.payu.custombrowser.services.SnoozeService" />

<activity android:name="com.payu.custombrowser.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" />
<activity android:name="com.payu.custombrowser.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.6.0)
### Integration of Custom Browser (Latest version 7.6.1)
Binary file modified libs/classes.jar
Binary file not shown.
File renamed without changes.
Binary file added res/drawable-hdpi-v4/cb_ic_edit_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added res/drawable-ldpi-v4/cb_ic_edit_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-mdpi-v4/cb_ic_edit_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added res/drawable-xhdpi-v4/cb_ic_edit_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added res/drawable-xxhdpi-v4/cb_ic_edit_black.png
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added res/drawable-xxxhdpi-v4/cb_ic_edit_black.png
File renamed without changes
40 changes: 19 additions & 21 deletions res/layout/cb_payments.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,27 @@ android:layout_width="match_parent"
android:layout_height="match_parent">-->
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/main_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<FrameLayout
android:id="@+id/main_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible" />
android:visibility="visible" />

<!-- <Button
android:id="@+id/buttonone"
android:text="reloadWVUsingJS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
<!-- <Button
android:id="@+id/buttonone"
android:text="reloadWVUsingJS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
<Button
android:id="@+id/buttontwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="reloadWVNative"/>
</RelativeLayout>-->
<Button
android:id="@+id/buttontwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="reloadWVNative"/>
</RelativeLayout>-->
</android.support.v4.widget.DrawerLayout>
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="cb_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
<style name="cb_snooze_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" >
<style name="cb_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"/>
<style name="cb_snooze_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
</resources>
7 changes: 4 additions & 3 deletions res/values-v22/styles.xml → res/values-v22/values-v22.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="cb_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
<style name="cb_snooze_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" >
<style name="cb_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"/>
<style name="cb_snooze_dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
</resources>
12 changes: 0 additions & 12 deletions res/values/attrs.xml

This file was deleted.

27 changes: 0 additions & 27 deletions res/values/colors.xml

This file was deleted.

23 changes: 0 additions & 23 deletions res/values/dimens.xml

This file was deleted.

144 changes: 0 additions & 144 deletions res/values/strings.xml

This file was deleted.

Loading

0 comments on commit 60cfc3b

Please sign in to comment.