X.Y. Hu
X.Y. Hu
`MigrationHelper.java` 中大量使用 try catch 结构捕获异常, 但是捕获后仅输出了异常日志, 没有真正意义上地处理异常. 这会埋下不少隐患. 随便举个例子, 比如`generateTempTables` 时, 哪怕并未成功创建临时表, 迁移依然不会终止, 后续的删除数据库操作仍然会执行, 这样就导致了老数据的遗失. 有计划处理一下类似隐患吗?
Mostly indicator is placed at the center of its parent view. Adding placeAtTheCenterWithView to the MONActivityIndicatorView.m can make the view controller lighter. Demo is also changed to show the usage...
The wechat QR-code in README is out-of-date. :(
Data length of wave file before and after processing will decrease by 2~3%. Any ideas?
This issue only happens on `oppo r9m` currently. Bellowing is the crash log: ``` java.lang.RuntimeException: An error occured while executing doInBackground() at android.os.AsyncTask$3.done(AsyncTask.java:304) at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355) at java.util.concurrent.FutureTask.setException(FutureTask.java:222) at java.util.concurrent.FutureTask.run(FutureTask.java:242) at...
主工程 id 固化是成功的,但是`submodule`下`build.gradle`无法使用该脚本,提示`android.applicationVariants`找不到,导致编译不过。 然后我把`android.applicationVariants`替换为`android.libraryVariants`,编译通过了,但是固化不生效。