aboutsummaryrefslogtreecommitdiff
path: root/examples/ex1_standalone_app
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ex1_standalone_app')
-rw-r--r--examples/ex1_standalone_app/README.md6
-rw-r--r--examples/ex1_standalone_app/build.gradle2
2 files changed, 4 insertions, 4 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>
```
diff --git a/examples/ex1_standalone_app/build.gradle b/examples/ex1_standalone_app/build.gradle
index ee60dc1..58c1ed1 100644
--- a/examples/ex1_standalone_app/build.gradle
+++ b/examples/ex1_standalone_app/build.gradle
@@ -22,6 +22,6 @@ dependencies {
// The 'implementation project' dep is to compile against the snippet lib source in
// this repo. For your own snippets, you'll want to use the regular
// 'implementation' dep instead:
- //implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
+ //implementation 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
implementation project(':mobly-snippet-lib')
}