Coder Social home page Coder Social logo

survival's Introduction

Survival

一个Android端保活集成框架

如果你需要将工具加入到其他项目中,请注意需要在清单文件AndroidManifest.xml 里注册三个服务

使用方法简介

  private void initSurvival(){

    mBuild = new Survival(MainActivity.this, "测试","测试",R.mipmap.ic_launcher)
            .setDoubleServiceSurvival(true)//双服务互启保活
            .setServiceContinuousStart(false)//取消双服务保活,每次触发都启动服务
            .setAlarmRepeatingTime(60*1000L)//定时器保活
            .setReceiver(true)//广播保活
            .setAudioSurvival(true)
            .setListener(new SurvivalListener() {
                @Override
                public void onStart() {
                    Log.e(TAG, "onStart: Survival 触发");

                }

                @Override
                public void onHeartbeat(int heartbeatId) {
                    Log.e(TAG, "onHeartbeat: Survival触发心跳heartbeatId="+heartbeatId);
                    //此方法为工具内置的心跳回调,工具有3个服务所以会有3个心跳id

                }

                @Override
                public void onStop() {
                    Log.e(TAG, "onStop: Survival");

                }

                @Override
                public void onDestroy() {
                    Log.e(TAG, "onDestroy: Survival");

                }

                @Override
                public void onError(String reason) {
                    Log.e(TAG, "onError: Survival异常="+reason);

                }
            })
            .build();
}

survival's People

Contributors

z3880341 avatar

Stargazers

 avatar Eric avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.