Results 4 issues of XShawn

Hello, The **android.jar** in **android-29** is not a Real jar. In fact, it is ... > android.jar |---- android29 |-------- android29.jar And, **android29.jar** can not access to `@hide`-class. eg. `android/util/ByteStringUtils.java`....

**运行环境:** |操作系统|浏览器| |---|---| |Windows|Chrome| **Markdown文本内容:** ```md * 测试样例 ```kotlin fun main(args: Array) { // 匿名求和函数 val sumLambda: (Int, Int) -> Int = {x,y -> x+y} println(sumLambda(1,2)) // 输出 3 }...

bug

First, thanks for what you have done. And then, there has a bug in `CallRecordReceiver.kt`. See the code below: ``` // Derived classes could override these to respond to specific...

建议交换下面 onComplete 和 setEnabled 的顺序,或者直接移除 setEnabled。 ``` if (listener != null) { listener.onComplete(stringBuilder.toString()); setEnabled(false); } ``` 这样可以让一个控件在listener之后,立马就可以进入等待下一次输入的状态,而不是被disable掉。