We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ede7ac + 19b84da commit f266b33Copy full SHA for f266b33
auth/README.md
@@ -184,14 +184,15 @@ startActivityForResult(
184
RC_SIGN_IN);
185
```
186
187
-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:
188
189
```java
190
startActivityForResult(
191
AuthUI.getInstance()
192
.createSignInIntentBuilder()
193
.setAvailableProviders(...)
194
.setTosUrl("https://superapp.example.com/terms-of-service.html")
195
+ .setPrivacyPolicyUrl("https://superapp.example.com/privacy-policy.html")
196
.setTheme(R.style.SuperAppTheme)
197
.build(),
198
0 commit comments