endian11
2019-06-05 05015fe5917ef89f7adc650230dc431eb03b1043
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.anyun.exam.lib;
 
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
 
/**
 * MyApplication2
 * Created by lzw on 2019/6/5. 13:22:46
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public class RemoteService extends Service {
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}