me.xx2bab.polyfill.matrix.tool.ReflectionKit.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyfill-matrix Show documentation
Show all versions of polyfill-matrix Show documentation
Hook Toolset for Android App Build System.
package me.xx2bab.polyfill.matrix.tool
object ReflectionKit {
fun getField(clazz: Class, instance: T, fieldName: String): Any {
val field = clazz.declaredFields.filter { it.name == fieldName }[0]
field.isAccessible = true
return field.get(instance) as Any
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy