You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
- Updated documentation to pass an activity context for login and logout [\#808](https://github.com/auth0/Auth0.Android/pull/808) ([pmathew92](https://github.com/pmathew92))
8
+
- Add to CustomTabsOptions ability to disable opening auth in custom tab [\#806](https://github.com/auth0/Auth0.Android/pull/806) ([bennycao](https://github.com/bennycao))
9
+
10
+
**Changed**
11
+
- Fixed the java samples in the Example.md file [\#807](https://github.com/auth0/Auth0.Android/pull/807) ([pmathew92](https://github.com/pmathew92))
- Support Process Death in WebAuthProvider [\#784](https://github.com/auth0/Auth0.Android/pull/784) ([ahibrahimleague](https://github.com/ahibrahimleague))
18
+
19
+
**Changed**
20
+
- Updated compile and target sdk version to 35 [\#799](https://github.com/auth0/Auth0.Android/pull/799) ([pmathew92](https://github.com/pmathew92))
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ To install Auth0.Android with [Gradle](https://gradle.org/), simply add the foll
51
51
52
52
```gradle
53
53
dependencies {
54
-
implementation 'com.auth0.android:auth0:3.2.1'
54
+
implementation 'com.auth0.android:auth0:3.5.0'
55
55
}
56
56
```
57
57
@@ -197,6 +197,8 @@ The callback will get invoked when the user returns to your application. There a
197
197
198
198
##### A note about App Deep Linking:
199
199
200
+
> Whenever possible, Auth0 recommends using [Android App Links](https://auth0.com/docs/applications/enable-android-app-links) as a secure way to link directly to content within your app. Custom URL schemes can be subject to [client impersonation attacks](https://datatracker.ietf.org/doc/html/rfc8252#section-8.6).
201
+
200
202
If you followed the configuration steps documented here, you may have noticed the default scheme used for the Callback URI is `https`. This works best for Android API 23 or newer if you're using [Android App Links](https://auth0.com/docs/applications/enable-android-app-links), but in previous Android versions this _may_ show the intent chooser dialog prompting the user to choose either your application or the browser. You can change this behaviour by using a custom unique scheme so that the OS opens directly the link with your app.
201
203
202
204
1. Update the `auth0Scheme` Manifest Placeholder on the `app/build.gradle` file or update the intent-filter declaration in the `AndroidManifest.xml` to use the new scheme.
0 commit comments