ServiceConnector

Service binding for android AIDL services.

Лицензия

Лицензия

Группа

Группа

com.josesamuel
Идентификатор

Идентификатор

serviceconnector
Последняя версия

Последняя версия

1.0.6
Дата

Дата

Тип

Тип

aar
Описание

Описание

ServiceConnector
Service binding for android AIDL services.
Ссылка на сайт

Ссылка на сайт

https://github.com/josesamuel/serviceconnector/
Система контроля версий

Система контроля версий

https://github.com/josesamuel/serviceconnector/

Скачать serviceconnector

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.josesamuel/serviceconnector/ -->
<dependency>
    <groupId>com.josesamuel</groupId>
    <artifactId>serviceconnector</artifactId>
    <version>1.0.6</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.josesamuel/serviceconnector/
implementation 'com.josesamuel:serviceconnector:1.0.6'
// https://jarcasting.com/artifacts/com.josesamuel/serviceconnector/
implementation ("com.josesamuel:serviceconnector:1.0.6")
'com.josesamuel:serviceconnector:aar:1.0.6'
<dependency org="com.josesamuel" name="serviceconnector" rev="1.0.6">
  <artifact name="serviceconnector" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.josesamuel', module='serviceconnector', version='1.0.6')
)
libraryDependencies += "com.josesamuel" % "serviceconnector" % "1.0.6"
[com.josesamuel/serviceconnector "1.0.6"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

ServiceConnector

Field and method binding for connecting with Android remote AIDL (or Remoter) services.

Replace the boiler plate service connection codes like -

public class ActivityWithoutServiceConnector extends Activity {

    //remote service interface
    private IEchoService mEchoService;

    /**
     * Service connection that gets call back when service is connected
     */
    private ServiceConnection serviceConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder service) {
            //get the service 
            mEchoService = IEchoService.Stub.asInterface(service);
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            mEchoService = null;
        }
    };


    /**
     * Connect with the remote service
     */
    private void conectWithService() {
        Intent serviceIntent = new Intent("util.serviceconnector.ECHO_SERVICE");
        serviceIntent.setComponent(new ComponentName("util.serviceconnector.service", "util.serviceconnector.service.EchoService"));
        startService(serviceIntent);
        bindService(serviceIntent, serviceConnection, Context.BIND_AUTO_CREATE);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        ...
        conectWithService();
    }

}

Replace that with

public class ActivityWithServiceConnector extends Activity {

    @ServiceInfo(serviceIntent = "util.serviceconnector.ECHO_SERVICE")
    private IEchoService mEchoService;

    @ServiceConnectionCallback
    public void onServiceConnectionChanged(String serviceIntent, boolean connected) throws RemoteException {
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        ...
        ServiceConnector.bind(this, this);
    }
}

Getting ServiceConnector

dependencies {
  compile 'com.josesamuel:serviceconnector:1.0.6'
}

Java Doc

ServiceConnector Java Doc

License

Copyright 2018 Joseph Samuel

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.

Версии библиотеки

Версия
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0