INNER CODE UNIT · Kotlin
PatchesResult
ReVanced/revanced-patcher · patcher/src/commonMain/kotlin/app/revanced/patcher/Patching.kt:130
class PatchesResult internal constructor(
getDexFiles: () -> Set<PatchedDexFile>,
getResources: () -> PatchedResources?,
) {
/**
* The patched dex files.
*/
val dexFiles by lazy(getDexFiles)
/**
* The patched resources, or null if no resources were patched.
*/
val resources by lazy(getResources)
/**
* A dex file.
*
* @param name The original name of the dex file.
* @param stream The dex file as [InputStream].