com.tencent.tinker.lib.util.TinkerServiceInternals Java Examples
The following examples show how to use
com.tencent.tinker.lib.util.TinkerServiceInternals.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DefaultPatchRequestCallback.java From tinkerpatch-sdk with MIT License | 5 votes |
@Override public boolean beforePatchRequest() { TinkerServerClient client = TinkerServerClient.get(); // check network if (!NetStatusUtil.isConnected(client.getContext())) { TinkerLog.e(TAG, "not connect to internet"); return false; } if (TinkerServiceInternals.isTinkerPatchServiceRunning(client.getContext())) { TinkerLog.e(TAG, "tinker service is running"); return false; } return true; }
Example #2
Source File: SampleResultService.java From HotFixDemo with MIT License | 4 votes |
@Override public void onPatchResult(final PatchResult result) { if (result == null) { TinkerLog.e(TAG, "SampleResultService received null result!!!!"); return; } TinkerLog.i(TAG, "SampleResultService receive result: %s", result.toString()); //first, we want to kill the recover process TinkerServiceInternals.killTinkerPatchServiceProcess(getApplicationContext()); Handler handler = new Handler(Looper.getMainLooper()); handler.post(new Runnable() { @Override public void run() { if (result.isSuccess) { Toast.makeText(getApplicationContext(), "patch success, please restart process", Toast.LENGTH_LONG).show(); } else { Toast.makeText(getApplicationContext(), "patch fail, please check reason", Toast.LENGTH_LONG).show(); } } }); // is success and newPatch, it is nice to delete the raw file, and restart at once // for old patch, you can't delete the patch file if (result.isSuccess) { deleteRawPatchFile(new File(result.rawPatchFilePath)); //not like TinkerResultService, I want to restart just when I am at background! //if you have not install tinker this moment, you can use TinkerApplicationHelper api if (checkIfNeedKill(result)) { if (TinkerUtils.isBackground()) { TinkerLog.i(TAG, "it is in background, just restart process"); restartProcess(); } else { //we can wait process at background, such as onAppBackground //or we can restart when the screen off TinkerLog.i(TAG, "tinker wait screen to restart process"); new TinkerUtils.ScreenState(getApplicationContext(), new TinkerUtils.ScreenState.IOnScreenOff() { @Override public void onScreenOff() { restartProcess(); } }); } } else { TinkerLog.i(TAG, "I have already install the newly patch version!"); } } }
Example #3
Source File: SampleResultService.java From tinker-manager with Apache License 2.0 | 4 votes |
@Override public void onPatchResult(final PatchResult result) { if (result == null) { TinkerLog.e(TAG, "SampleResultService received null result!!!!"); return; } TinkerLog.i(TAG, "SampleResultService receive result: %s", result.toString()); //first, we want to kill the recover process TinkerServiceInternals.killTinkerPatchServiceProcess(getApplicationContext()); Handler handler = new Handler(Looper.getMainLooper()); handler.post(new Runnable() { @Override public void run() { if (result.isSuccess) { TinkerLog.i(TAG, "patch success, please restart process"); } else { TinkerLog.e(TAG, "patch fail, please check reason"); } } }); // is success and newPatch, it is nice to delete the raw file, and restart at once // for old patch, you can't delete the patch file if (!result.isSuccess) { //补丁合成异常 PatchManager.getInstance().onPatchFailure(result.rawPatchFilePath, PatchManager.ERROR_CODE_PATCH_RESULT + PatchManager.ERROR_PATCH_FAIL); return; } //deleteRawPatchFile(new File(result.rawPatchFilePath)); PatchManager.getInstance().onPatchSuccess(result.rawPatchFilePath); //not like TinkerResultService, I want to restart just when I am at background! //if you have not install tinker this moment, you can use TinkerApplicationHelper api if (checkIfNeedKill(result)) { if (SampleUtils.isBackground()) { TinkerLog.i(TAG, "it is in background, just restart process"); restartProcess(); } else { //we can wait process at background, such as onAppBackground //or we can restart when the screen off TinkerLog.i(TAG, "tinker wait screen to restart process"); new SampleUtils.ScreenState(getApplicationContext(), new SampleUtils.ScreenState.IOnScreenOff() { @Override public void onScreenOff() { restartProcess(); } }); } } else { TinkerLog.i(TAG, "I have already install the newly patch version!"); } }
Example #4
Source File: TinkerServerResultService.java From tinkerpatch-sdk with MIT License | 4 votes |
@Override public void onPatchResult(final PatchResult result) { if (result == null) { TinkerLog.e(TAG, "received null result!!!!"); return; } TinkerLog.i(TAG, "receive result: %s", result.toString()); //first, we want to kill the recover process TinkerServiceInternals.killTinkerPatchServiceProcess(getApplicationContext()); TinkerServerManager.reportTinkerPatchFail(result); if (result.isSuccess) { TinkerLog.i(TAG, "patch success, please restart process"); File rawFile = new File(result.rawPatchFilePath); if (rawFile.exists()) { TinkerLog.i(TAG, "save delete raw patch file"); SharePatchFileUtil.safeDeleteFile(rawFile); } //not like TinkerResultService, I want to restart just when I am at background! //if you have not install tinker this moment, you can use TinkerApplicationHelper api if (checkIfNeedKill(result)) { if (TinkerServerUtils.isBackground()) { TinkerLog.i(TAG, "it is in background, just restart process"); restartProcess(); } else { //we can wait process at background, such as onAppBackground //or we can restart when the screen off TinkerLog.i(TAG, "tinker wait screen to restart process"); new TinkerServerUtils.ScreenState( getApplicationContext(), new TinkerServerUtils.IOnScreenOff() { @Override public void onScreenOff() { restartProcess(); } }); } } else { TinkerLog.i(TAG, "I have already install the newly patch version!"); } } else { TinkerLog.i(TAG, "patch fail, please check reason"); } //repair current patch fail, just clean! if (!result.isSuccess) { //if you have not install tinker this moment, you can use TinkerApplicationHelper api Tinker.with(getApplicationContext()).cleanPatch(); } }