[android] re-include BrambleCoreModule since issue caused by it also exists on master

This commit is contained in:
Torsten Grote
2019-11-07 12:20:03 -03:00
parent 83ed6f90d7
commit 088ca01eb3

View File

@@ -1,6 +1,7 @@
package org.briarproject.briar.android;
import org.briarproject.bramble.BrambleAndroidModule;
import org.briarproject.bramble.BrambleCoreModule;
import org.briarproject.briar.BriarCoreModule;
public class BriarTestComponentApplication extends BriarApplicationImpl {
@@ -11,7 +12,7 @@ public class BriarTestComponentApplication extends BriarApplicationImpl {
.appModule(new AppModule(this)).build();
// We need to load the eager singletons directly after making the
// dependency graphs
// BrambleCoreModule.initEagerSingletons(component); // FIXME AbstractMethodError
BrambleCoreModule.initEagerSingletons(component); // FIXME AbstractMethodError
BrambleAndroidModule.initEagerSingletons(component);
BriarCoreModule.initEagerSingletons(component);
AndroidEagerSingletons.initEagerSingletons(component);