aboutsummaryrefslogtreecommitdiff
path: root/examples/ex4_uiautomator/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ex4_uiautomator/src/main/AndroidManifest.xml')
-rw-r--r--examples/ex4_uiautomator/src/main/AndroidManifest.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/ex4_uiautomator/src/main/AndroidManifest.xml b/examples/ex4_uiautomator/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..89d5276
--- /dev/null
+++ b/examples/ex4_uiautomator/src/main/AndroidManifest.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.google.android.mobly.snippet.example4">
+
+ <application android:allowBackup="false">
+ <meta-data
+ android:name="mobly-snippets"
+ android:value="com.google.android.mobly.snippet.example4.UiAutomatorSnippet" />
+ </application>
+
+ <!-- This snippet does NOT target ex2 (which is the main app the code
+ automates). The instrumentation target is itself which creates a
+ standalone snippet. -->
+ <instrumentation
+ android:name="com.google.android.mobly.snippet.SnippetRunner"
+ android:targetPackage="com.google.android.mobly.snippet.example4" />
+
+</manifest>