I understand that one can add a Terms of Service URL to the sign-in flow like so:
AuthUI.getInstance()
.createSignInIntentBuilder()
.setProviders(...)
.setTosUrl("https://superapp.example.com/terms-of-service.html")
.setTheme(...)
.build()
However, since Google Play policies require the disclosure of how personal data is used in apps, it would be nice to increase the visibility of this information during sign-up/sign-in. I'd be happy to add a method setPrivacyPolicyUrl(String url) to the sign-in builder if there aren't any major problems with the idea.