zsu.kni.ksp.KniCommonSP.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kni-ksp Show documentation
Show all versions of kni-ksp Show documentation
Auto JNI binding based on Kotlin Multiplatform
The newest version!
package zsu.kni.ksp
import com.google.devtools.ksp.processing.Resolver
import com.google.devtools.ksp.processing.SymbolProcessor
import com.google.devtools.ksp.symbol.KSAnnotated
class KniCommonSP(private val context: KniEnvContext) : SymbolProcessor {
override fun process(resolver: Resolver): List {
return emptyList()
}
}