Enabled conversation actions by default on Google devices only

This commit is contained in:
M66B
2021-11-04 07:26:37 +01:00
parent dc163ff447
commit 4ab16ce1a3
4 changed files with 8 additions and 6 deletions

View File

@@ -963,6 +963,10 @@ public class Helper {
return true;
}
static boolean isGoogle() {
return "Google".equalsIgnoreCase(Build.MANUFACTURER);
}
static boolean isSamsung() {
return "Samsung".equalsIgnoreCase(Build.MANUFACTURER);
}