From 73bc40bb0fdd98856e9be59b783975fdf07bd48c Mon Sep 17 00:00:00 2001 From: Sanchit Mehta Date: Tue, 23 Jun 2026 02:30:27 +0530 Subject: [PATCH] docs: fix stale SDK version values in manifestPlaceholders example The build.gradle snippet showed compileSdkVersion/targetSdkVersion 30 and minSdkVersion 21, contradicting the Requirements section which states Android API 31+ is required. Updated to compileSdkVersion 34, targetSdkVersion 34, and minSdkVersion 31. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e1bd8d20..8ce890df 100644 --- a/README.md +++ b/README.md @@ -131,11 +131,11 @@ Next, define the Manifest Placeholders for the Auth0 Domain and Scheme which are apply plugin: 'com.android.application' android { - compileSdkVersion 30 + compileSdkVersion 34 defaultConfig { applicationId "com.auth0.samples" - minSdkVersion 21 - targetSdkVersion 30 + minSdkVersion 31 + targetSdkVersion 34 //... //---> Add the next line