Harshit Bangar
Harshit Bangar
@Flowdalic In marshmallow app standby will not allow long standing TCP connections - http://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-power. However there are few concerns for using GCM: 1. I found GCM highly unreliable. http://eladnava.com/google-cloud-messaging-extremely-unreliable/ ....
I can add support for robolectric by writing a custom test engine (it will be a copy of Robolectric's test runner). There will be few limitations such as configs per...
The pr is almost ready. I will be adding tests and test with different Android configurations before sending the PR. Definitely by end of this week.
How about just 6 different top-level modules? ``` dagger-android / master : Pokemon app using dagger-android (With Tests, Fragments) dagger-android-dependent-comp : dagger-android with Dependent Component dagger-android-dependent-comp-kotlin : In Kotlin subcomponent...
@ragdroid that is a very good point. It also leads to multiple version of same classes in the ide. One way to keep common logic out is in a common...
Hi @cmelchior @bmunkholm , I am too looking for full text search something similar to http://www.sqlite.org/fts3.html. I am making a chat app and it's great if I can add search...
We can. It's a bad idea to do that. It searches in between words which is a really bad experience. I was wrong and I think indexing is the only...
To anyone who is interested a workaround we are using - https://gist.github.com/bangarharshit/c880c5427a0614a010e4 . It will be able to do search like "Flight to seattle", just make sure to index the...
It is final now as of [3.11](https://github.com/square/okhttp/wiki/Events). Will be happy to send a PR if you are ok and we can agree on the approach.
No, I never did that because basic OkHttp events sufficed for me. this library needs your app to have large number of network calls so as to use moving window...