aboutsummaryrefslogtreecommitdiff
path: root/examples/ex1_standalone_app/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ex1_standalone_app/README.md')
-rw-r--r--examples/ex1_standalone_app/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/ex1_standalone_app/README.md b/examples/ex1_standalone_app/README.md
index 5d68e34..b6d12d7 100644
--- a/examples/ex1_standalone_app/README.md
+++ b/examples/ex1_standalone_app/README.md
@@ -12,7 +12,7 @@ a snippet app that controls (instruments) another app under test, please see
```
dependencies {
- implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
+ implementation 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
}
```
@@ -23,7 +23,7 @@ a snippet app that controls (instruments) another app under test, please see
package com.my.app;
...
public class ExampleSnippet implements Snippet {
- @Rpc(description='Returns a string containing the given number.')
+ @Rpc(description="Returns a string containing the given number.")
public String getFoo(Integer input) {
return "foo " + input;
}
@@ -58,7 +58,7 @@ a snippet app that controls (instruments) another app under test, please see
package="com.my.app">
<application>...</application>
<instrumentation
- android:name="com.google.android.mobly.snippet.ServerRunner"
+ android:name="com.google.android.mobly.snippet.SnippetRunner"
android:targetPackage="com.my.app" />
</manifest>
```