danatechgithub4

Results 4 comments of danatechgithub4

> 我也遇到了,我改了下配置顺序, 开始 id 'com.android.application' 是在最上面,放到最下面就OK了 plugins { id 'org.jetbrains.kotlin.android' id 'kotlin-android' id 'kotlin-kapt' id 'com.alibaba.arouter' id 'com.android.application' } 这个办法是瞎扯淡,> Task :app:transformClassesWithCom.alibaba.arouterForRelease 这个任务都没了。。。当然就不报错了。掩耳盗铃啊

![image](https://github.com/gdutxiaoxu/nestedwebview/assets/127659297/623eafc3-ed32-4480-8ba0-9a75200faf74) ``` @SuppressLint("ClickableViewAccessibility") @Override public boolean onTouchEvent(MotionEvent ev) { initVelocityTrackerIfNotExists(); MotionEvent vtev = MotionEvent.obtain(ev); final int actionMasked = ev.getActionMasked(); if (actionMasked == MotionEvent.ACTION_DOWN) { mNestedYOffset = 0; } vtev.offsetLocation(0, mNestedYOffset);...

> 怎么处理的?也遇到了 自己Fork一份,删掉Element ![image](https://github.com/user-attachments/assets/0888485f-462c-4451-a1cb-cb897386cbc9)

``` package com.alibaba.android.arouter.compiler.entity; import com.alibaba.android.arouter.facade.annotation.Route; import com.alibaba.android.arouter.facade.enums.RouteType; import com.alibaba.android.arouter.facade.model.RouteMeta; import java.util.Map; import javax.lang.model.element.Element; public class RouteMetaKapt extends RouteMeta { private Element rawType; // Raw type of route /** * Type...