If user is running on SailfishOS, disable Call Integration.
(cherry picked from commit 177ff29f412ee75929dfdaaffa758d6c0457400b)
This commit is contained in:
parent
7e83910b29
commit
8c5ee1c52a
1 changed files with 4 additions and 0 deletions
|
@ -562,6 +562,10 @@ public class CallIntegration extends Connection {
|
|||
if ("umidigi".equals(manufacturer) && Build.VERSION.SDK_INT <= Build.VERSION_CODES.S) {
|
||||
return false;
|
||||
}
|
||||
// SailfishOS's AppSupport do not support Call Integration
|
||||
if (Build.MODEL.endsWith("(AppSupport)")) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue