VaradGupta23

Results 123 comments of VaradGupta23

You're right to question that behavior — your understanding is valid. In both todo-mvp-kotlin and todo-mvp-rxjava, the call: swipeRefreshLayout.setOnRefreshListener { presenter.loadTasks(forceUpdate = false) } should indeed use forceUpdate = true....

Solve This Error: To fix this, you need to change the URL in the README.md to correctly point to the usecases directory. Original (Broken) Link in README.md: Markdown [usecases](https://github.com/android/architecture-samples/tree/main/usecases)README.md: You...

The Difference In Java todo-mvp The Presenter interface includes: void takeView(T view); void dropView(); These methods are called by the View (Activity/Fragment) to attach/detach itself to the Presenter — usually...

Recommended Solution Use launchFragmentInHiltContainer (custom version) that gives you control over the NavController. Step 1: Create a reusable launchFragmentInHiltContainer function inline fun launchFragmentInHiltContainer( navController: NavController? = null, fragmentArgs: Bundle? =...

You're absolutely right — triggering a fragment navigation immediately when a navigation drawer item is tapped can interrupt the drawer's closing animation, leading to a janky UI experience. Goal Wait...

Problem Mapping functions (e.g., converting TaskEntity ↔ Task ↔ TaskDto) are currently scattered across ViewModels, Repositories, or inlined — leading to: Harder-to-test code Tight coupling Low readability and scalability Solution:...

Here’s a concise and effective response or resolution strategy for Issue #932 – "Tests should use assertEquals for consistency": Issue Summary Inconsistent test assertions are used throughout the codebase —...

What We See You're typing the same sequence (abcdefg) repeatedly. But the typed result is scrambled differently each time, e.g.: dcbaegfbadcef... gabcdeagfcbdegf The rustdeskemc --version output confirms you're on: 1.4.0...

Yes, I’m using *Wayland* on Debian 12. RustDesk was installed using the *.deb package*, not Flatpak. I believe a similar issue was discussed in Issue #11476 , which also mentioned...

Just to confirm: We're not using Wayland – this is happening on X11. RustDesk is installed via the .deb package (not Flatpak). The issue persists even on X11, so it’s...