mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
* Move PluginConfig out of bramble-android. Projects using bramble now need to provide it. * Add a PluginConfig#shouldPoll() method which can be used to disable polling altogether. * Move Poller instantiation to the PluginManager.
12 lines
209 B
Java
12 lines
209 B
Java
package org.briarproject.bramble;
|
|
|
|
import org.briarproject.bramble.system.AndroidSystemModule;
|
|
|
|
import dagger.Module;
|
|
|
|
@Module(includes = {
|
|
AndroidSystemModule.class
|
|
})
|
|
public class BrambleAndroidModule {
|
|
}
|