TF-1205: remove android:hardwareAccelerated

This commit is contained in:
ManhNTX
2022-11-23 08:45:42 +07:00
committed by Dat H. Pham
parent d2da7f23b1
commit 82b2e30031
11 changed files with 34 additions and 22 deletions
@@ -23,7 +23,6 @@ import 'package:tmail_ui_user/features/login/data/local/oidc_configuration_cache
import 'package:tmail_ui_user/features/login/data/local/token_oidc_cache_manager.dart';
import 'package:tmail_ui_user/features/mailbox/data/local/mailbox_cache_manager.dart';
import 'package:tmail_ui_user/features/manage_account/data/local/language_cache_manager.dart';
import 'package:tmail_ui_user/features/push_notification/data/local/fcm_cache_manager.dart';
import 'package:tmail_ui_user/features/thread/data/local/email_cache_manager.dart';
import 'package:tmail_ui_user/main/exceptions/cache_exception_thrower.dart';
@@ -58,7 +57,6 @@ class LocalBindings extends Bindings {
Get.put(RecentLoginUsernameCacheClient());
Get.put(RecentLoginUsernameCacheManager(Get.find<RecentLoginUsernameCacheClient>()));
Get.put(FcmTokenCacheClient());
Get.put(FCMCacheManager(Get.find<FcmTokenCacheClient>()));
Get.put(CachingManager(
Get.find<MailboxCacheClient>(),
Get.find<StateCacheClient>(),
+1 -1
View File
@@ -12,7 +12,7 @@ class AppConfig {
return false;
}
static String appDashboardConfigurationPath = "configurations/app_dashboard.json";
static bool get appFCMAvailable {
static bool get fcmAvailable {
final supported = dotenv.get('FCM_AVAILABLE', fallback: 'unsupported');
if (supported == 'supported') {
return true;