Harshit Bangar
Harshit Bangar
Error - https://support.google.com/android/thread/54435386?hl=en Solution - AutofillManager.commit() works as written in this thread.
Implementing secure channel for mocket. One soultion is to use DTLS - https://tools.ietf.org/html/rfc4347#section-3.2. Bouncy castle is 1 implementation - https://github.com/bcgit/bc-java/blob/master/tls/src/main/java/org/bouncycastle/tls/DTLSProtocol.java
There are multiple things which can be added to themes and styles guide - [Google I/O talk](https://www.youtube.com/watch?v=TIHXGwRTMWI) and [Dan's talk](https://www.youtube.com/watch?v=Jr8hJdVGHAk). Summary: - Add implicit vs explicit parenting. - Pre-21 vs...
In [`NYBusDriver`](https://github.com/MindorksOpenSource/NYBus/blob/eb58c52f869993fa380149ba453cc269468b5ff2/nybus-common/src/main/java/com/mindorks/nybus/driver/NYBusDriver.java#L143) the events can be posted from any thread and are observed on the correct thread. Each of the thread related observables themselves are not thread-safe. Consider using the...
Hi, Any idea if we can cache ice candidate or remote sdp for extended period of time. What is the caching you are using? Sending ice candidate or sdp multiple...
Reflection is currently used to generate the intent in `DeepLinkDelegate`. ```java new DeepLinkEntry("http://example.com/deepLink/{id}/{name}/{place}", DeepLinkEntry.Type.METHOD, MainActivity.class, "intentForTaskStackBuilderMethods"), ``` Why not use a cache of IntentProvider? ```java public interface IntentProvider { Intent...
It is a pretty useful project but switching branch can be a lot of effort. Why not just use different gradle submodules to demo different part of projects?
There are no listeners for onupdate for pickers. Currently there are setonformlisteners which we can use to schedule a runnable with delay and do a get value?
For slow network calls, the average speed includes endpoint latency. Now we have info about connection start in okhttp 3.9 - [EventLisetener]( https://github.com/square/okhttp/blob/8c5283797bd9997ba8445ef937118f7fd95e2c85/okhttp/src/main/java/okhttp3/EventListener.java), do you guys think it will be...
Facebook [network connection class](https://github.com/facebook/network-connection-class/blob/master/connectionclass/src/main/java/com/facebook/network/connectionclass/ConnectionQuality.java) built a network classifier on top of traffic stats which is far better than connection manager. Once https://github.com/flipkart-incubator/okhttp-stats/issues/45 is resolved, we can build a pretty good...