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

main.dev.yidafu.amphibians.ksp.desc.ModuleProviderDesc.kt Maven / Gradle / Ivy

package dev.yidafu.amphibians.ksp.desc

import dev.yidafu.amphibians.ksp.androidModuleProviderName

class ModuleProviderDesc(
//    val packageName: String,
    val modules: List,
) {
    val packageName: String
        get() = if (modules.isNotEmpty()) modules[0].packageName else ""
    val providerName: String
        get() {
//            throw IllegalArgumentException(packageName)
            return packageName.substringAfterLast(".").androidModuleProviderName()
        }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy