Giter Club home page Giter Club logo

sysserviceproxylib's Introduction

SysServiceProxyLib

SysServiceProxyLib (SSProxy for short) is an Android library for invoking system services in service manager. Root permission is required.

Library User Guide

Import library

View all released version at Releases.

Either use the released tags or use the "release" branch to get a released version.

Library usage

For a complete example, please refer code of the "demo" module.

Start daemon

First of all, you must start the SSProxy daemon before invoking any other methods. If successful, a new serivce "ssproxy_xxx" will be added into system service manager.

SysServiceProxy.getInstance(appContext).startDaemon();

Check if the daemon is available

SysServiceProxy.getInstance(appContext).isDaemonAlive();

Invoke system services via SSProxy

For example, make the device goto sleep:

IBinder powerBinder = SysServiceProxy.getInstance(this).getService(Context.POWER_SERVICE);
AppLogger.d(TAG, "power binder: " + powerBinder);
if (powerBinder != null) {
    Object powerService = PowerManagerIA.asInterface(powerBinder);
    AppLogger.d(TAG, "power service: " + powerService);
    if (powerService != null) {
        PowerManagerIA.goToSleep(powerService, SystemClock.uptimeMillis());
    }
}

Stop the daemon

You can stop the daemon when you don't need it anymore.

SysServiceProxy.getInstance(appContext).stopDaemon();

Library Development

Branches and tags

There are two important branches: master and release. The "master" branch is for the purpose of library development; the "release" branch is for library release.

When a new version is ready for library users, a new release will be added and tagged at Releases.

Unit testing

This library should be well tested by unit test cases. Execute all test cases and create only one merged report:

$ ./gradlew mergeAndroidReports

View the test report at location "build/reports/androidTests/index.html".

Test reports

To view all test reports of this library, please go to Test Reports.

License

Copyright 2015 Yongce Tu ([email protected])

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

sysserviceproxylib's People

Contributors

yongce 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.