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.
1 parent 76ee789 commit 19b84daCopy full SHA for 19b84da
auth/README.md
@@ -175,14 +175,15 @@ startActivityForResult(
175
RC_SIGN_IN);
176
```
177
178
-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:
179
180
```java
181
startActivityForResult(
182
AuthUI.getInstance()
183
.createSignInIntentBuilder()
184
.setProviders(...)
185
.setTosUrl("https://superapp.example.com/terms-of-service.html")
186
+ .setPrivacyPolicyUrl("https://superapp.example.com/privacy-policy.html")
187
.setTheme(R.style.SuperAppTheme)
188
.build(),
189
0 commit comments