INNER CODE UNIT · Kotlin
PatchedDexFile
ReVanced/revanced-patcher · patcher/src/commonMain/kotlin/app/revanced/patcher/Patching.kt:149
class PatchedDexFile internal constructor(
val name: String,
val stream: InputStream,
)
/**
* The resources of a patched apk.
*
* @param resourcesApk The compiled resources.apk file.
* @param otherResources The directory containing other resources files.
* @param doNotCompress List of files that should not be compressed.
* @param deleteResources List of resources that should be deleted.
*/
class PatchedResources internal constructor(
val resourcesApk: File?,
val otherResources: File?,
val doNotCompress: Set<String>,
val deleteResources: Set<String>,