Chen Mulong

Results 62 comments of Chen Mulong

> android:backupInForeground > Indicates that Auto Backup operations may be performed on this app even if the app is in a foreground-equivalent state. The system shuts down an app during...

from #2603 > While adding a section about `writeCopyTo` for the docs I started thinking about Google Play Services Backup/Restore. > We should investigate how it actually works in detail....

It is a known restriction from Object Store that `Results.addChangeListener()` cannot be called in the transaction now. This needs to be documented in the javadoc.

@cmelchior due to the nature of how Object Store running the queries, even `findAll()` will be put into background thread if it is possible. That means calling `findAll().addChangeListener()` inside a...

This would be difficult to support. Since the terminal gets the quit signal but not the neovim. There is no general way to hook with the terminal's exit function.

I have the same problem with some pages from github. for example https://github.com/realm/realm-java/pull/1214 The firefox will freeze and pop up a dialog to say there is no response from script...

It is reproducible if your vim window is not wide enough to fit that message in one line. This could happen to any warning/error message if it cannot be displayed...

Is this ready for the next round of review? I saw CI failed.

http://stackoverflow.com/questions/29072501/how-to-unlock-android-phone-through-adb this should work: ``` adb shell input text XXXX && adb shell input keyevent 66 ``` Maybe combine it with checking if the top activity is lock activity.

According to http://stackoverflow.com/a/35585744/1396606 , it seems it is safe for us to use `` -- we are using gnustl static linked. Also, we are using `visibility=hidden` for build, but we...