diff --git a/auth/README.md b/auth/README.md index c3d629537..d853c8255 100644 --- a/auth/README.md +++ b/auth/README.md @@ -175,7 +175,7 @@ startActivityForResult( RC_SIGN_IN); ``` -If a terms of service URL and a custom theme are required: +If a terms of service URL, privacy policy URL, and a custom theme are required: ```java startActivityForResult( @@ -183,6 +183,7 @@ startActivityForResult( .createSignInIntentBuilder() .setProviders(...) .setTosUrl("https://superapp.example.com/terms-of-service.html") + .setPrivacyPolicyUrl("https://superapp.example.com/privacy-policy.html") .setTheme(R.style.SuperAppTheme) .build(), RC_SIGN_IN);