From 1d2564cedb4749b654909e58f4f7ac20a2093377 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 12 Jan 2022 12:02:00 +0100 Subject: [PATCH] Interface import on Android --- RNS/Reticulum.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/RNS/Reticulum.py b/RNS/Reticulum.py index 95096db..7a5304d 100755 --- a/RNS/Reticulum.py +++ b/RNS/Reticulum.py @@ -1,8 +1,11 @@ from .vendor.platformutils import get_platform if get_platform() == "android": - # TODO: Selectively import Android-relevant interfaces - pass + from .Interfaces import Interface + from .Interfaces import LocalInterface + from .Interfaces import AutoInterface + from .Interfaces import TCPInterface + from .Interfaces import UDPInterface else: from .Interfaces import *