Files
briar/bramble-android/src/main/java/org/briarproject/bramble/BrambleAndroidModule.java
goapunk c6b88b51f0 Make plugins and polling configurable
* 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.
2018-05-23 14:39:00 +02:00

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 {
}