開(kāi)機(jī)自啟動(dòng)(小米需要在安全中心設(shè)置自啟動(dòng))
//在廣播中聲明
String action = intent.getAction();
if (action.equals("android.intent.action.BOOT_COMPLETED")) {
Intent activity = new Intent(context, SecondActivity.class);
activity.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(activity);
}
<receiver android:name=".xxx.xxx">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
//權(quán)限
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
靜默安裝(需要root)
public static boolean installUseRoot(String filePath) {
if (TextUtils.isEmpty(filePath))
throw new IllegalArgumentException("Please check apk file path!");
boolean result = false;
Process process = null;
OutputStream outputStream = null;
BufferedReader errorStream = null;
try {
process = Runtime.getRuntime().exec("su");
outputStream = process.getOutputStream();
String command = "pm install -r " + filePath + "\n";
outputStream.write(command.getBytes());
outputStream.flush();
outputStream.write("exit\n".getBytes());
outputStream.flush();
process.waitFor();
errorStream = new BufferedReader(new InputStreamReader(process.getErrorStream()));
StringBuilder msg = new StringBuilder();
String line;
while ((line = errorStream.readLine()) != null) {
msg.append(line);
}
Log.d(TAG, "install msg is " + msg);
if (!msg.toString().contains("Failure")) {
result = true;
}
} catch (Exception e) {
Log.e(TAG, e.getMessage(), e);
} finally {
try {
if (outputStream != null) {
outputStream.close();
}
if (errorStream != null) {
errorStream.close();
}
} catch (IOException e) {
outputStream = null;
errorStream = null;
process.destroy();
}
}
return result;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
關(guān)機(jī)代碼塊(root)
public static void closeOs(Context context) {
try {
Process proc = Runtime.getRuntime().exec(new String[]{"su", "-c", "reboot -p"}); //關(guān)機(jī)
} catch (IOException e) {
e.printStackTrace();
}
}
雙守護(hù)線程?;?/h2>
public class DaemonService extends Service {
String TAG = "DaemonService";
private DaemonBinder mDaemonBinder;
private DaemonServiceConnection mDaemonServiceConn;
public DaemonService() {
}
@Override
public void onCreate() {
super.onCreate();
mDaemonBinder = new DaemonBinder();
if (mDaemonServiceConn == null) {
mDaemonServiceConn = new DaemonServiceConnection();
}
Log.i(TAG, TAG + " onCreate");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
Log.i(TAG, TAG + " onStartCommand");
bindService(new Intent(this, RemoteService.class), mDaemonServiceConn, Context.BIND_IMPORTANT);
return START_STICKY;
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return mDaemonBinder;
}
/**
* 通過(guò)AIDL實(shí)現(xiàn)進(jìn)程間通信
*/
class DaemonBinder extends IProcessService.Stub {
@Override
public String getServiceName() throws RemoteException {
return TAG;
}
}
/**
* 連接遠(yuǎn)程服務(wù)
*/
class DaemonServiceConnection implements ServiceConnection {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
try {
// 與遠(yuǎn)程服務(wù)通信
IProcessService process = IProcessService.Stub.asInterface(service);
Log.i(TAG, "連接" + process.getServiceName() + "服務(wù)成功");
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
public void onServiceDisconnected(ComponentName name) {
// RemoteException連接過(guò)程出現(xiàn)的異常,才會(huì)回調(diào),unbind不會(huì)回調(diào)
startService(new Intent(DaemonService.this, RemoteService.class));
bindService(new Intent(DaemonService.this, RemoteService.class), mDaemonServiceConn, Context.BIND_IMPORTANT);
}
}
}
public class RemoteService extends Service {
String TAG = "RemoteService";
private ServiceBinder mServiceBinder;
private RemoteServiceConnection mRemoteServiceConn;
@Override
public void onCreate() {
super.onCreate();
mServiceBinder = new ServiceBinder();
if (mRemoteServiceConn == null) {
mRemoteServiceConn = new RemoteServiceConnection();
}
Log.i(TAG, TAG + " onCreate");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
Log.i(TAG, TAG + " onStartCommand");
bindService(new Intent(this, DaemonService.class), mRemoteServiceConn, Context.BIND_IMPORTANT);
return START_STICKY;
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return mServiceBinder;
}
/**
* 通過(guò)AIDL實(shí)現(xiàn)進(jìn)程間通信
*/
class ServiceBinder extends IProcessService.Stub {
@Override
public String getServiceName() throws RemoteException {
return "RemoteService";
}
}
/**
* 連接遠(yuǎn)程服務(wù)
*/
class RemoteServiceConnection implements ServiceConnection {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
try {
IProcessService process = IProcessService.Stub.asInterface(service);
Log.i(TAG, "連接" + process.getServiceName() + "服務(wù)成功");
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
public void onServiceDisconnected(ComponentName name) {
// RemoteException連接過(guò)程出現(xiàn)的異常,才會(huì)回調(diào),unbind不會(huì)回調(diào)
startService(new Intent(RemoteService.this, DaemonService.class));
bindService(new Intent(RemoteService.this, DaemonService.class), mRemoteServiceConn, Context.BIND_IMPORTANT);
}
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
//aidl 文件
package com.android.process.aidl;
interface IProcessService {
/**
* Demonstrates some basic types that you can use as parameters
* and return values in AIDL.
*/
String getServiceName();
}
|