bruce3x
bruce3x
还有 `adb shell uiautomator dump` 可以得到屏幕中控件信息~
之前版本就遇到了 应该可以这样 ``` implementation("...") { exclude module: "unspecified" } ```
```kotlin wbApi.registerApp(context, authInfo, object : SdkListener { override fun onInitSuccess() { initSuccess = true } override fun onInitFailure(p0: Exception?) { } }) ``` 测试下来,在 `onInitSuccess()` 之后去调用授权或者分享就没问题了 👀

Hi @TomasKypta ,this can solve issues: #108 #100 #91 #68
Hi @siempredelao , thanks for reply. In my application, I use `ButterKnife.bind(this)` in `BaseActivity#onCreate()`, so I no longer need to write it in the subclass **in most cases**. It means...
可以给 `app/build.gradle` 中加个 gradle task,来确保编译前移除了 code push 源码中的 android id 调用 ```groovy def fixLine(File file, String keyword, String newLine) { if (!file.exists()) { throw IllegalStateException("$file is not found!") } List...
I recently discovered a website that can conveniently generate skill icons and copy links. :) https://www.skilliconsgenerator.com/
Maybe provide a new API? ```dart final [count, setCount] = useStateValue(123); ```
Do you have any plan to support this feature ? Similar to [ARouter](https://github.com/alibaba/ARouter), call `ARouter.getInstance().inject(this)`, then parameter injection will apply automatically. Anyway, Meepo is a interesting and useful library. Thanks.