我正在尝试使Dagger-android与Conductor(或任何自定义类)一起使用。我尝试复制AndroidSupportInjectionModule(和朋友)所做的所有事情,在我看来,这是一种自定义类处理。
但是我得到
C:\Users\ursus\AndroidStudioProjects\...\ControllersModule.java:15: error: com.foo.bar.ChannelsController is not a framework type
public abstract com.foo.bar.ChannelsController channelsController();
所以,我的“库”代码
package com.foo.bar
import com.bluelinelabs.conductor.Controller;
import dagger.Module;
import dagger.android.AndroidInjectionModule;
import dagger.android.AndroidInjector;
import dagger.internal.Beta;
import dagger.multibindings.Multibinds;
import java.util.Map;
@Beta
@Module(includes = AndroidInjectionModule.class)
public abstract class ConductorInjectionModule {
private ConductorInjectionModule() {
}
@Multibinds
abstract Map<Class<? extends Controller>, AndroidInjector.Factory<? extends Controller>> controllerInjectorFactories();
@Multibinds
abstract Map<String, AndroidInjector.Factory<? extends Controller>> controllerInjectorFactoriesWithStringKeys();
}
我什至没有编译,因此假定粘贴ConductorInjection和HasControllerInjector是没有意义的
用法:
@Module
abstract class AppModule {
@ContributesAndroidInjector abstract fun mainActivity(): MainActivity
@ContributesAndroidInjector abstract fun channelsController(): ChannelsController
}
class App : Application(), HasActivityInjector, HasControllerInjector {
@Inject lateinit var activityInjector: DispatchingAndroidInjector<Activity>
@Inject lateinit var controllerInjector: DispatchingAndroidInjector<Controller>
private lateinit var appComponent: AppComponent
override fun onCreate() {
super.onCreate()
appComponent = DaggerAppComponent.builder()
.applicationContext(this)
.build()
.apply {
inject(this@App)
}
}
override fun activityInjector() = activityInjector
override fun controllerInjector() = controllerInjector
}
@Singleton
@Component(
modules = [
AndroidInjectionModule::class,
ConductorInjectionModule::class,
AppModule::class,
NetModule::class
]
)
interface AppComponent {
fun inject(app: App)
@Component.Builder
interface Builder {
@BindsInstance
fun applicationContext(context: Context): Builder
fun build(): AppComponent
}
}
implementation deps.dagger.runtime
implementation deps.dagger.androidRuntime
kapt deps.dagger.compiler
kapt deps.dagger.androidCompiler
所有都是“ 2.19”版本(尝试过2.16)
AGP“ com.android.tools.build:gradle:3.3.0-rc02”(已尝试3.2.1稳定)
有任何线索吗?在我看来,这一切都应该像dagger-android-support
一样
答案 0 :(得分:6)
错误:com.foo.bar.ChannelsController不是框架类型
所以要回答的问题是,“ dagger-android如何知道框架类型是什么”。
答案可以在this commit to Dagger-Android中的2.19和2.20之间找到,答案是“他们删除了旧的工作方式以更好地与AndroidX兼容”。
所以我们在https://stackoverflow.com/a/53891780/2413303中看到了,
/** * Returns the Android framework types available to the compiler, keyed by their associated {@code * dagger.android} {@link MapKey}s. This will always contain the types that are defined by the * framework, and only contain the support library types if they are on the classpath of the * current compilation. */ static ImmutableMap<Class<? extends Annotation>, TypeMirror> frameworkTypesByMapKey( Elements elements) { return ImmutableMap.copyOf( Stream.of( elements.getPackageElement("dagger.android"), elements.getPackageElement("dagger.android.support")) .filter(packageElement -> packageElement != null) .flatMap(packageElement -> typesIn(packageElement.getEnclosedElements()).stream()) .filter(AndroidMapKeys::isNotAndroidInjectionKey) .filter(type -> isAnnotationPresent(type, MapKey.class)) .filter(mapKey -> mapKey.getAnnotation(MapKey.class).unwrapValue()) .flatMap(AndroidMapKeys::classForAnnotationElement) .collect(toMap(key -> key, key -> mapKeyValue(key, elements)))); }
他们的代码检查了@MapKey
和dagger.android
软件包中自己的dagger.android.support
类型,如下所示:
// java/dagger/android/support/FragmentKey.java
@Beta
@MapKey
@Documented
@Target(METHOD)
@Deprecated
public @interface FragmentKey {
Class<? extends Fragment> value();
}
因此,他们根据@MapKey
和dagger.android
软件包中可用的dagger.android.support
来读取框架类型。
显然,他们在2.20中删除了此支票,因此现在您可以注入所需的任何东西。欢喜!
但是,否则,您实际上可以以在项目中的@ControllerKey
包中添加@ViewKey
和dagger.android
的方式对其进行破解,并且实际上可能会起作用与2.19。
该提交中还删除了检查“不是框架类型”错误的测试。
Ah和
@Multibinds
abstract Map<String, AndroidInjector.Factory<? extends Controller>> controllerInjectorFactoriesWithStringKeys();
您也可以使用2.20删除此部分,现在只需要AndroidInjectionModule
。
答案 1 :(得分:1)