random click and gesture for android 7.0+!!!
This commit is contained in:
23
app/src/main/java/com/stardust/scriptdroid/external/ScriptExecutionIntentService.java
vendored
Normal file
23
app/src/main/java/com/stardust/scriptdroid/external/ScriptExecutionIntentService.java
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.stardust.scriptdroid.external;
|
||||
|
||||
import android.app.IntentService;
|
||||
import android.content.Intent;
|
||||
import android.support.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Created by Stardust on 2017/5/15.
|
||||
*/
|
||||
|
||||
public class ScriptExecutionIntentService extends IntentService {
|
||||
|
||||
public ScriptExecutionIntentService() {
|
||||
super("ScriptExecutionIntentService");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onHandleIntent(@Nullable Intent intent) {
|
||||
if (intent == null)
|
||||
return;
|
||||
CommonUtils.handleIntent(this, intent);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user