MutableApkList

A container of APK URIs to install that supports adding elements to it.

Properties

Link copied to clipboard
abstract val size: Int

Returns the size of the underlying list.

Functions

Link copied to clipboard
@RequiresApi(value = 21)
abstract fun add(apk: Uri)

Adds the specified apk to this MutableApkList.

Link copied to clipboard
@RequiresApi(value = 21)
abstract fun addAll(apks: Iterable<Uri>)

Adds all elements of the given apks collection to this MutableApkList.

Link copied to clipboard
abstract fun toList(): List<Uri>

Materializes this ApkList to a List of URIs.