com.likethesalad.android.templates.provider.di.TemplatesProviderComponent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of templates-provider-plugin Show documentation
Show all versions of templates-provider-plugin Show documentation
This is a Gradle plugin for Android applications which resolves XML string references in other XML strings.
The newest version!
package com.likethesalad.android.templates.provider.di
import com.likethesalad.android.templates.common.tasks.identifier.action.TemplatesIdentifierAction
import com.likethesalad.android.templates.provider.tasks.service.action.TemplatesServiceGeneratorAction
import dagger.Component
import javax.inject.Singleton
@Component(modules = [TemplatesProviderModule::class])
@Singleton
interface TemplatesProviderComponent {
fun templatesServiceGeneratorActionFactory(): TemplatesServiceGeneratorAction.Factory
fun templatesIdentifierActionFactory(): TemplatesIdentifierAction.Factory
}