From a878b144d475ddbe86c644ed625c792b70ef7264 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 11 Jun 2024 13:25:01 -0400 Subject: [PATCH] Update README.md Fixed Auth links --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f2110e5e0..2d0d6a31e 100644 --- a/README.md +++ b/README.md @@ -284,9 +284,9 @@ At this point in time, the Android code is bundled with the main Java artifact, If the [official Dropbox App](https://play.google.com/store/apps/details?id=com.dropbox.android) is installed, it will attempt to use it to do authorization. If it is not, a web authentication flow is launched in-browser. -Use the methods in the [`Auth`](https://github.com/dropbox/dropbox-sdk-java/blob/main/dropbox-sdk-android/src/main/java/com/dropbox/core/android/Auth.kt) to start an authentication sessions. -* [`Auth.startOAuth2Authentication(...)`](https://github.com/dropbox/dropbox-sdk-java/blob/main/dropbox-sdk-android/src/main/java/com/dropbox/core/android/Auth.kt) -* [`Auth.startOAuth2PKCE(...)`](https://github.com/dropbox/dropbox-sdk-java/blob/main/dropbox-sdk-android/src/main/java/com/dropbox/core/android/Auth.kt) +Use the methods in the [`Auth`](https://github.com/dropbox/dropbox-sdk-java/blob/main/android/src/main/java/com/dropbox/core/android/Auth.kt) to start an authentication sessions. +* [`Auth.startOAuth2Authentication(...)`](https://github.com/dropbox/dropbox-sdk-java/blob/main/android/src/main/java/com/dropbox/core/android/Auth.kt) +* [`Auth.startOAuth2PKCE(...)`](https://github.com/dropbox/dropbox-sdk-java/blob/main/android/src/main/java/com/dropbox/core/android/Auth.kt) Please look at the `examples/android` sample app for usage as well.