Yufeng Wu

Results 4 issues of Yufeng Wu

https://github.com/jadepeakpoet/ARouter 更多详情请点击fork的仓库地址查看文档 1.0.3版本发布 1: AGP从7.4.2更新到8.0,(AGP7.x请使用1.0.2版本) 2: 使用 AsmClassVisitorFactory替换Transform (Transfom 自 AGP8.0版本被移除,不可用) 3: 基于AGP8.0使用kotlin代替groovy重写了ARouter插件 release 1.0.3 1: Update agp from 7.4.2 to 8.0, fixes agp8.0 compile error(Use 1.0.2 for AGP7.x) 2:...

https://github.com/jadepeakpoet/ARouter #### 说明 官方两年没更新了,我fork了一个版本,主要做了以下更改 1.迁移到androidx,对于本库可关闭jetifier(android.enableJetifier=false)或不做配置 2.适配到AGP7.3.0,解决其中的兼容性bug 3.升级依赖的第三方库 4.在jitpack发布本库 使用时,相对原来的库,仅需要做以下更改 1. 以下几个依赖的group从com.alibaba更改为com.github.jadepeakpoet.ARouter com.github.jadepeakpoet.ARouter:arouter-register:1.0.1 com.github.jadepeakpoet.ARouter:arouter-api:1.0.1 com.github.jadepeakpoet.ARouter:arouter-compiler:1.0.1 2. maven库从mavenCentral变更为jitpack maven { url 'https://jitpack.io' } #### Description The official version has not been upgraded...

Describe the bug With other lib using by local swift packages as dependencies of my projcect, executing setup.rb success ,then error occur while compile the xcode project error: The element...

bug
help wanted
more info required

@NonNull private TextView createTitle() { TextView titleView = new TextView(getContext()); if (mDialogParams.typeface != null) { titleView.setTypeface(mDialogParams.typeface); } titleView.setGravity(Gravity.CENTER); titleView.setId(android.R.id.title); RelativeLayout.LayoutParams layoutParamsTitle = new RelativeLayout.LayoutParams( RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT); layoutParamsTitle.addRule(RelativeLayout.CENTER_HORIZONTAL); titleView.setLayoutParams(layoutParamsTitle); if (mTitleParams.height...