Disabled BIMI for Play Store version

This commit is contained in:
M66B 2022-12-30 10:30:30 +01:00
parent 203d472947
commit 28768061df
3 changed files with 3 additions and 2 deletions

View File

@ -75,7 +75,7 @@ This table provides a complete overview of all shared data and the conditions un
| Libravatar | [MD5 hash](https://en.wikipedia.org/wiki/MD5) of email addresses | If Libravatars are enabled, upon receiving a message (*) |
| GitHub | None, but see the remarks below | Upon downloading Disconnect's Tracker Protection lists |
| | | Upon checking for updates (*) |
| BIMI | Domain name of email addresses | If BIMI is enabled, upon receiving a message |
| BIMI | Domain name of email addresses | If BIMI is enabled, upon receiving a message (*) |
| Favicons | Domain name of email addresses | If favicons are enabled, upon receiving a message (*) |
| Link title | Link address | Upon pressing a download button in the insert link dialog |
| Bugsnag | Information about warnings and errors | If error reporting is enabled, upon detecting an abnormal situation |

View File

@ -270,7 +270,7 @@ public class ContactInfo {
boolean avatars = prefs.getBoolean("avatars", true);
boolean prefer_contact = prefs.getBoolean("prefer_contact", false);
boolean distinguish_contacts = prefs.getBoolean("distinguish_contacts", false);
boolean bimi = prefs.getBoolean("bimi", false);
boolean bimi = (prefs.getBoolean("bimi", false) && !BuildConfig.PLAY_STORE_RELEASE);
boolean gravatars = (prefs.getBoolean("gravatars", false) && !BuildConfig.PLAY_STORE_RELEASE);
boolean libravatars = (prefs.getBoolean("libravatars", false) && !BuildConfig.PLAY_STORE_RELEASE);
boolean favicons = prefs.getBoolean("favicons", false);

View File

@ -1567,6 +1567,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="
swBimi,tvBimiHint,tvBimiVerified,ibBimi,
swGravatars,tvGravatarsHint,tvGravatarPrivacy,
swLibravatars,tvLibravatarsHint,tvLibravatarPrivacy" />
</androidx.constraintlayout.widget.ConstraintLayout>