All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xml.guard.model.ResInfo.kt Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.xml.guard.model

import java.io.File

data class ResInfo(
    // 资源文件
    var resFile: File? = null,
    // 资源类型名称:(anim、animator、layout、drawable、mipmap...)
    var defType: String = "",
    // 源名称
    var rawName: String = "",
    // 混淆名称
    var obfuscateName: String = "",
    // 源名称前缀
    var rawNamePrefix: String = "",
    // 混淆名称前缀
    var obfuscateNamePrefix: String = "",
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy