com.dipien.byebyejetifier.archive.ArchiveItemVisitor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bye-bye-jetifier Show documentation
Show all versions of bye-bye-jetifier Show documentation
Gradle Plugin to verify if you can keep Android Jetifier disabled
package com.dipien.byebyejetifier.archive
import com.dipien.byebyejetifier.scanner.ScanResult
/**
* Visitor for [ArchiveItem]
*/
interface ArchiveItemVisitor {
fun visit(archive: Archive, scanResults: MutableList)
fun visit(archiveFile: ArchiveFile, scanResults: MutableList)
}