Submit an AOSP friendly multi-devices example
am: 6c84446e41

Change-Id: I465e773d06b09288ee4f3e3c3552558fc596af10
diff --git a/res/config/example/multi-devices.xml b/res/config/example/multi-devices.xml
new file mode 100644
index 0000000..2c556e6
--- /dev/null
+++ b/res/config/example/multi-devices.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<configuration description="A simple multi-devices example in Tradefed">
+    <option name="test-tag" value="multi-devices-example" />
+
+    <device name="device1">
+        <target_preparer class="com.android.tradefed.targetprep.DeviceSetup">
+            <option name="disable" value="true" />
+        </target_preparer>
+    </device>
+
+    <device name="device2">
+        <target_preparer class="com.android.tradefed.targetprep.DeviceSetup">
+            <option name="disable" value="true" />
+        </target_preparer>
+    </device>
+    <multi_target_preparer class="com.android.tradefed.targetprep.multi.HelloWorldMultiTargetPreparer" />
+
+    <test class="com.android.tradefed.HelloWorldMultiDevices" />
+
+    <logger class="com.android.tradefed.log.FileLogger">
+        <option name="log-level" value="verbose" />
+        <option name="log-level-display" value="verbose" />
+    </logger>
+    <result_reporter class="com.android.tradefed.result.ConsoleResultReporter" />
+
+</configuration>