VaradGupta23

Results 120 comments of VaradGupta23

Issue Summary: External Sample Submission – #633 Author: @erdo Branch Base: Based on todo-mvp, but heavily modified. Proposal: Submit a new architecture sample that is structurally different from the official...

Thanks for the clarification, @erdo — that context helps a lot. Even though it's older and pre-Compose, your approach still offers valuable architectural insights, especially for those exploring clean separation...

That java.lang.IllegalAccessError in TODO-MVP is a known issue that pops up when running instrumentation tests on older Android project setups like android-architecture’s todo-mvp sample. It’s usually not because your logic...

Yes, upgrading Mockito to v2 (or even v3/4 if compatible) is a good idea—especially for projects like todo-mvp, where maintaining compatibility with modern tooling and syntax is important. Why upgrade...

Thank you @1pear1 for this detailed and well-documented report on the StrandHogg 2.0 task hijacking vulnerability and the proposed remediation strategies. Summary of the Issue You've outlined a task stack...

the problem in the todo-mvvm-databinding branch comes from the way the “TO-DO added” Snackbar message is triggered. Why it only shows for the first added item In the todo-mvvm-databinding sample,...

You're encountering an issue where DataBinding classes are not generated automatically after upgrading to: Android Studio 3.4.1 Gradle 5.1.1 Android Gradle Plugin (AGP) and possibly Kotlin support This is a...

Issue Gradle sync fails because dependencies can't be downloaded due to: Usage of JCenter, which has been deprecated. You're offline or JCenter is no longer serving old artifacts. Typical errors:...

Can two fragments get the same Presenter instance? It depends entirely on how the Presenter is scoped in Dagger: If Presenter is unscoped (default in Dagger): Every @Inject creates a...

Suggested Response: You're right — the link in the "What you need" section of the README.md is currently broken. It points to: https://github.com/googlesamples/android-architecture/tree/todo-databinding But the correct link should be: https://github.com/googlesamples/android-architecture/tree/dev-todo-mvvm-databinding...