Skip to content

Commit a36990a

Browse files
committed
Changes for v1.8.0
1 parent 504931a commit a36990a

File tree

11 files changed

+18
-14
lines changed

11 files changed

+18
-14
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
.idea/*
44
tests/TestConfig.js
55
!.gitignore
6+
.gradle
67

78

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cordova-plugin-oracle-idm-auth 1.7.0
1+
# cordova-plugin-oracle-idm-auth 1.8.0
22

33
## About the cordova-plugin-oracle-idm-auth
44
The plugin provides authentication and authorization functionality for cordova based mobile applications,

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release Notes
22

3+
## 1.8.0 (18 Feb, 2022)
4+
* Replacing the deprecated packages with latest androidx pacakge.
5+
36
## 1.7.0 (13 Dec, 2021)
47
* Support for client certificate authentication flow.
58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-oracle-idm-auth",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"description": "Provides authentication and authorization functionality using the Oracle IDM SDK, supporting standard protocols like Basic Auth, OAUTH, OpenID Connect and WebSSO.",
55
"cordova": {
66
"id": "cordova-plugin-oracle-idm-auth",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
77
xmlns:android="http://schemas.android.com/apk/res/android"
88
id="cordova-plugin-oracle-idm-auth"
9-
version="1.7.0">
9+
version="1.8.0">
1010
<name>cordova-plugin-oracle-idm-auth</name>
1111
<description>Provides authentication and authorization functionality using the Oracle IDM SDK, supporting standard protocols like Basic Auth, OAUTH, OpenID Connect and WebSSO</description>
1212
<keywords>cordova,idm,authentication,auth</keywords>

src/android/src/oracle/idm/auth/plugin/IdmAuthentication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
import android.content.IntentFilter;
1414
import android.net.Uri;
1515
import android.os.Looper;
16-
import android.support.customtabs.CustomTabsIntent;
17-
import android.support.v4.content.LocalBroadcastManager;
16+
import androidx.browser.customtabs.CustomTabsIntent;
17+
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
1818
import android.util.Log;
1919
import android.widget.Toast;
2020

src/android/src/oracle/idm/auth/plugin/WebViewActivity.java

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

1313
import android.app.AlertDialog;
1414
import android.content.DialogInterface;
15-
import android.support.v4.content.LocalBroadcastManager;
15+
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
1616
import android.util.Log;
1717
import android.view.View;
1818
import android.widget.Button;

src/android/src/oracle/idm/auth/plugin/customtabs/CustomTabActivityHelper.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
import android.app.Activity;
1818
import android.net.Uri;
1919
import android.os.Bundle;
20-
import android.support.customtabs.CustomTabsClient;
21-
import android.support.customtabs.CustomTabsIntent;
22-
import android.support.customtabs.CustomTabsServiceConnection;
23-
import android.support.customtabs.CustomTabsSession;
20+
import androidx.browser.customtabs.CustomTabsClient;
21+
import androidx.browser.customtabs.CustomTabsIntent;
22+
import androidx.browser.customtabs.CustomTabsServiceConnection;
23+
import androidx.browser.customtabs.CustomTabsSession;
2424

2525
import java.util.List;
2626

src/android/src/oracle/idm/auth/plugin/customtabs/CustomTabsHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import android.content.pm.PackageManager;
2121
import android.content.pm.ResolveInfo;
2222
import android.net.Uri;
23-
import android.support.customtabs.CustomTabsClient;
23+
import androidx.browser.customtabs.CustomTabsClient;
2424
import android.text.TextUtils;
2525
import android.util.Log;
2626

src/android/src/oracle/idm/auth/plugin/customtabs/ServiceConnection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
package oracle.idm.auth.plugin.customtabs;
1616

1717
import android.content.ComponentName;
18-
import android.support.customtabs.CustomTabsClient;
19-
import android.support.customtabs.CustomTabsServiceConnection;
18+
import androidx.browser.customtabs.CustomTabsClient;
19+
import androidx.browser.customtabs.CustomTabsServiceConnection;
2020

2121
import java.lang.ref.WeakReference;
2222

src/android/src/oracle/idm/auth/plugin/customtabs/ServiceConnectionCallback.java

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

1515
package oracle.idm.auth.plugin.customtabs;
1616

17-
import android.support.customtabs.CustomTabsClient;
17+
import androidx.browser.customtabs.CustomTabsClient;
1818

1919
/**
2020
* Callback for events when connecting and disconnecting from Custom Tabs Service.

0 commit comments

Comments
 (0)