We add some logic to dispose items when application created & disposed
before application initialized.
But some app just have some issue when some thread dependency items disposed
before application started.
To avoid this cases, let we block dispose sync logic and revert we always
dispose queue ensure in main thread.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
{
// Flush Disposable queue synchronously if it is not initialized yet.
// TODO : Need to check thread here if we need.
- ProcessDisposables();
+
+ // 2023-12-18 Block this logic since some APP call some thread-dependency objects before application start.
+ // ProcessDisposables();
}
}
{
// Flush Disposable queue synchronously if it is not initialized yet.
// TODO : Need to check thread here if we need.
- ProcessDisposables();
+
+ // 2023-12-18 Block this logic since some APP call some thread-dependency objects before application start.
+ // ProcessDisposables();
}
}