Compare commits

...

4 Commits

Author SHA1 Message Date
M66B 845608355c Updated description
3 days ago
M66B 500d022c97 Refactoring
3 days ago
M66B a4e1c24355 Updated comment
3 days ago
M66B aeb39893a1 Updated PSL
3 days ago

@ -128,12 +128,6 @@ Please see [this FAQ](https://m66b.github.io/FairEmail/#faq173) about the differ
**Important**: after enrolling in the [Advanced Protection Program](https://landing.google.com/advancedprotection/)
you cannot use third party email apps anymore, please see [this FAQ](https://m66b.github.io/FairEmail/#faq22) for more information.
The Gmail quick setup wizard can be used in official releases only (Play store or GitHub) because Google approved the use of OAuth for one app signature only.
**Important**: Gsuite accounts authorized with a username/password will stop working
[in the near future](https://gsuiteupdates.googleblog.com/2019/12/less-secure-apps-oauth-google-username-password-incorrect.html).
Gsuite accounts authorized with the quick setup wizard (OAuth) will keep working.
To download a GitHub release you might need to expand the assets section to download the [APK file](https://en.wikipedia.org/wiki/Android_application_package).
The GitHub version is being updated more often than the Play store version.
@ -147,6 +141,8 @@ Please [see here](https://m66b.github.io/FairEmail/#faq147) for more information
Because F-Droid builds and GitHub releases are signed differently, an F-Droid build needs to be uninstalled first to be able to update to a GitHub release.
The best way to verify the integrity of an APK file is documented [here](https://m66b.github.io/FairEmail/#faq205).
Certificate fingerprints:
```

@ -565,7 +565,7 @@ dependencies {
def lbm_version = "1.1.0"
def swiperefresh_version = "1.2.0-alpha01"
def documentfile_version = "1.1.0-alpha01"
def lifecycle_version = "2.7.0" // 2.8.1
def lifecycle_version = "2.7.0" // 2.8.3
def lifecycle_extensions_version = "2.2.0"
def room_version = "2.4.3" // 2.5.2/2.6.1/2.7.0-alpha04
def sqlite_version = "2.4.0" // 2.5.0-alpha04

@ -14862,10 +14862,6 @@ site.rb-hosting.io
// Submitted by Andrew Farries <andrew.farries@red-gate.com>
instances.spawn.cc
// Redstar Consultants : https://www.redstarconsultants.com/
// Submitted by Jons Slemmer <jons@redstarconsultants.com>
instantcloud.cn
// Russian Academy of Sciences
// Submitted by Tech Support <support@rasnet.ru>
ras.ru

@ -418,9 +418,9 @@ public class UriHelper {
if (path != null)
path = path.toLowerCase(Locale.ROOT);
boolean first = "www.facebook.com".equals(host);
String q = url.getEncodedQuery();
if (q != null) {
if (!TextUtils.isEmpty(q)) {
boolean first = "www.facebook.com".equals(host);
StringBuilder sb = new StringBuilder();
for (String kv : q.split("&")) {
int eq = kv.indexOf('=');

Loading…
Cancel
Save