update:2020.10.21

fix:蓝牙文件传输管控改为蓝牙开关管控
add:摄像头管控,影音格式管控,电话功能管控
This commit is contained in:
2020-10-21 18:47:57 +08:00
parent 49b19777b9
commit cf253e460c
10 changed files with 597 additions and 178 deletions

View File

@@ -0,0 +1,43 @@
package com.info.sn.service;
import android.app.Service;
import android.content.Intent;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import com.info.sn.network.api.HTTPInterface;
public class InitJpushServer extends Service {
public InitJpushServer() {
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
// throw new UnsupportedOperationException("Not yet implemented");
return null;
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
HTTPInterface.checkDevicesInfo(InitJpushServer.this);
return START_STICKY;
}
private Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
}
};
}