天天看点

cn.jpush.android.service.JCommonService报错找不到

一个老项目编译打包提示:

cn.jpush.android.service.JCommonService报错找不到

发现

cn.jpush.android.service.

这段没有标红,表示这段包是能找到的,只是

JCommonService

找不到。

又留意到是这个类报的错:

public class PushService extends JCommonService           

复制

结合名称理解,把

cn.jpush.android.service.JCommonService

换成

cn.jpush.android.service.PushService

即最后改动如下:

public class PushService extends cn.jpush.android.service.PushService {}           

复制

最后成功编译运行。