VaradGupta23
VaradGupta23
hi @JanVaclavek 👋 Thanks for opening an issue! Feel free to share your idea — we’re always open to suggestions and improvements. Looking forward to hearing more details. 🚀 —...
The issue you're facing stems from how Hilt handles @HiltViewModel-annotated classes and how you're trying to inject your ViewModel directly into BaseActivity. This is not allowed in Hilt 2.48.1 (or...
The key pain points they highlight 1. SavedInstanceState & config changes In AddEditTaskActivity, the mIsDataMissing flag is computed from savedInstanceState after injection. But because DaggerAppCompatActivity injects before your onCreate() logic...
Suggested Response: Great observation — this is an important subtlety in MVP + RxJava implementations! Why check getView() != null before calling setLoadingIndicator()? You're right — ideally, if Rx subscriptions...
You're absolutely right — the current architecture of Gnirehtet (which creates a VPN tunnel from the Android device to the host) breaks peer discovery and LAN-based communication, because: Why Peer...
In the todo-mvp project, the method: void setLoadingIndicator(boolean active); is used for both showing and hiding the loading spinner depending on the boolean value. Why the Issue Was Raised Problem:...
the crash happens because in the dev-todo-mvvm-live-kotlin branch the ViewModel’s saveTask() is doing something like: fun saveTask() { val task = Task(title.get(), description.get()) //
Step-by-Step Fix for Android Pie (Realme 2 Pro): 1. Manually Allow VPN Permission Open Gnirehtet app directly on your phone. It should prompt you for VPN permission. Tap Allow (even...
Hi @google-cla 👋 Thanks for the reminder! I’ve reviewed the Contributor License Agreement and completed the signing process just now. Please let me know if anything else is needed to...
Context: In the TasksRepository.java file of the Android Architecture sample (todoapp), there's a check on line 288: if (mCachedTasks == null) { mCachedTasks = new LinkedHashMap(); } Question: Why is...