From 886b0ac0cab8a78f18169448ebb7c7314680099c Mon Sep 17 00:00:00 2001
From: Mark Qvist <mark@unsigned.io>
Date: Sat, 22 Oct 2022 01:38:38 +0200
Subject: [PATCH] Fixed Android interfaces import

---
 RNS/Interfaces/__init__.py  | 3 ++-
 RNS/_version.py             | 2 +-
 RNS/vendor/platformutils.py | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/RNS/Interfaces/__init__.py b/RNS/Interfaces/__init__.py
index ba9eae1..84fff6a 100755
--- a/RNS/Interfaces/__init__.py
+++ b/RNS/Interfaces/__init__.py
@@ -22,6 +22,7 @@
 
 import os
 import glob
+import RNS.Interfaces.Android
 
 modules = glob.glob(os.path.dirname(__file__)+"/*.py")
-__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
\ No newline at end of file
+__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
diff --git a/RNS/_version.py b/RNS/_version.py
index 39774cf..f7e5c1d 100644
--- a/RNS/_version.py
+++ b/RNS/_version.py
@@ -1 +1 @@
-__version__ = "0.3.16"
+__version__ = "0.3.17"
diff --git a/RNS/vendor/platformutils.py b/RNS/vendor/platformutils.py
index b821af5..0246307 100644
--- a/RNS/vendor/platformutils.py
+++ b/RNS/vendor/platformutils.py
@@ -48,4 +48,4 @@ def cryptography_old_api():
     if cryptography.__version__ == "2.8":
         return True
     else:
-        return False
\ No newline at end of file
+        return False