AndroidMatrixArgs

data class AndroidMatrixArgs(val androidModelIds: Output<List<String>>, val androidVersionIds: Output<List<String>>, val locales: Output<List<String>>, val orientations: Output<List<String>>) : ConvertibleToJava<AndroidMatrixArgs>

A set of Android device configuration permutations is defined by the the cross-product of the given axes. Internally, the given AndroidMatrix will be expanded into a set of AndroidDevices. Only supported permutations will be instantiated. Invalid permutations (e.g., incompatible models/versions) are ignored.

Constructors

Link copied to clipboard
fun AndroidMatrixArgs(androidModelIds: Output<List<String>>, androidVersionIds: Output<List<String>>, locales: Output<List<String>>, orientations: Output<List<String>>)

Functions

Link copied to clipboard
open override fun toJava(): AndroidMatrixArgs

Properties

Link copied to clipboard

The ids of the set of Android device to be used. Use the TestEnvironmentDiscoveryService to get supported options.

Link copied to clipboard

The ids of the set of Android OS version to be used. Use the TestEnvironmentDiscoveryService to get supported options.

Link copied to clipboard
val locales: Output<List<String>>

The set of locales the test device will enable for testing. Use the TestEnvironmentDiscoveryService to get supported options.

Link copied to clipboard
val orientations: Output<List<String>>

The set of orientations to test with. Use the TestEnvironmentDiscoveryService to get supported options.