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 {}

最后成功编译运行。

你可能感兴趣的:(cn.jpush.android.service.JCommonService报错找不到)