mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-13 20:01:34 +01:00
update remoter to allow parameter to be named data
This commit is contained in:
parent
f4fb7023d2
commit
74301debc9
2 changed files with 3 additions and 3 deletions
|
@ -14,8 +14,8 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.josesamuel:remoter-annotations:1.1.9'
|
||||
annotationProcessor 'com.josesamuel:remoter:1.1.9'
|
||||
implementation 'com.josesamuel:remoter-annotations:1.2.0'
|
||||
annotationProcessor 'com.josesamuel:remoter:1.2.0'
|
||||
implementation 'org.parceler:parceler-api:1.1.12'
|
||||
annotationProcessor 'org.parceler:parceler:1.1.12'
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ public interface IScriptService {
|
|||
/**
|
||||
* runs the script with the given id and optional data
|
||||
*/
|
||||
void runScript(@ParamIn Script script, String data_, @ParamIn ScreenIdentity screen) throws ScriptException;
|
||||
void runScript(@ParamIn Script script, String data, @ParamIn ScreenIdentity screen) throws ScriptException;
|
||||
|
||||
/**
|
||||
* runs the given code. Code must end with a return statement
|
||||
|
|
Loading…
Reference in a new issue