mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-31 07:01:02 +00:00
10 lines
304 B
Kotlin
10 lines
304 B
Kotlin
package app.revanced.patcher.util.dex
|
|
|
|
import org.jf.dexlib2.writer.io.MemoryDataStore
|
|
|
|
/**
|
|
* Wrapper for dex files.
|
|
* @param name The original name of the dex file
|
|
* @param memoryDataStore The data store for the dex file.
|
|
*/
|
|
data class DexFile(val name: String, val memoryDataStore: MemoryDataStore) |