Skip to content

guanjunhello/keeplive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KeepLive for Android 安卓保活组件

集成了无声音乐(已考虑功耗,降至最低),前台服务、双进程守护、像素保活,jobs五种保活方式

主流的魅族、小米、锤子、vivo、努比亚、三星、华为等品牌,涵盖4.4至9.0的机型测试结果为,只要用户不主动杀死程序就不会死,但某些机型锁屏即断网的问题不是我能解决的。

更新日志

【1.0.8】 2018-12-11

1.修改ENERGY省电模式保活逻辑,保活效果更好一些,不过肯定不如ROGUE(流氓模式)

2.修改KeepLiveService的实现方法,不再传递Context

【1.0.7】 2018-12-05

1.新增RunMode(运行模式)设定,可设置ENERGY(省电模式)、ROGUE(流氓模式),多数情况下建议使用省电模式,经测试即时是省电模式,保活效果依然很强悍

【1.0.6】 2018-11-30

1.适配安卓8.0以上,修正startForegroundService引起not found service进而造成某些机型NAR的问题

【1.0.4】 2018-11-15

1.修改OnePixelActivity的基类为Activity,避免由于主题造成兼容问题

2.适配安卓8.0以上,将安卓8.0以上的startservice改为startForegroundService,增强了稳定性

【1.0.3】 2018-10-25

1.修复了在安卓9.0版本上引发闪退的bug

2.ForegroundNotificationClickListener新增Context参数,用于通知栏传递值

第一步,在application中启动保活服务

        //定义前台服务的默认样式。即标题、描述和图标
        ForegroundNotification foregroundNotification = new ForegroundNotification("测试","描述", R.mipmap.ic_launcher,
                //定义前台服务的通知点击事件
                new ForegroundNotificationClickListener() {
                    
                    @Override
                    public void foregroundNotificationClick(Context context, Intent intent) {
                    }
                });
        //启动保活服务
        KeepLive.startWork(this, KeepLive.RunMode.ENERGY, foregroundNotification,
                //你需要保活的服务,如socket连接、定时任务等,建议不用匿名内部类的方式在这里写
                new KeepLiveService() {
                    /**
                     * 运行中
                     * 由于服务可能会多次自动启动,该方法可能重复调用
                     */
                    @Override
                    public void onWorking() {

                    }
                    /**
                     * 服务终止
                     * 由于服务可能会被多次终止,该方法可能重复调用,需同onWorking配套使用,如注册和注销broadcast
                     */
                    @Override
                    public void onStop() {
                        
                    }
                }
        );

第二步,在manifest中添加权限申请,可能会报过时,不必在意

        <uses-permission android:name="android.permission.GET_TASKS"/>
        <uses-permission android:name="android.permission.REORDER_TASKS"/>

第三步,在manifest中添加相关service及broadcast。原样copy,不要改动

        <receiver android:name="com.fanjun.keeplive.receiver.NotificationClickReceiver"/>
        <activity android:name="com.fanjun.keeplive.activity.OnePixelActivity"/>
        <service android:name="com.fanjun.keeplive.service.LocalService"/>
        <service android:name="com.fanjun.keeplive.service.JobHandlerService" android:permission="android.permission.BIND_JOB_SERVICE"/>
        <service android:name="com.fanjun.keeplive.service.RemoteService" android:process=":remote"/>

依赖

Maven

<dependency>
  <groupId>com.fanjun</groupId>
  <artifactId>keeplive</artifactId>
  <version>1.0.8</version>
  <type>pom</type>
</dependency>

Gradle

implementation 'com.fanjun:keeplive:1.0.8'

Releases

No releases published

Packages

No packages published

Languages