diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py index 8d6bec4..a2db5aa 100644 --- a/sbapp/sideband/core.py +++ b/sbapp/sideband/core.py @@ -2139,6 +2139,8 @@ class SidebandCore(): with open(path, 'rb') as f: data = f.read() self.send_response(200) + if path.lower().endswith(".apk"): + self.send_header("Content-type", "application/vnd.android.package-archive") self.end_headers() self.wfile.write(data) except Exception as e: