Spaces:
Running
Running
Update utils/apk_debug.py
Browse files- utils/apk_debug.py +1 -1
utils/apk_debug.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import subprocess
|
2 |
import streamlit as st
|
3 |
-
|
4 |
def debug_apk(input_path, output_dir):
|
5 |
command = f"apk-mitm {input_path} -o {output_dir}"
|
6 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
|
|
1 |
import subprocess
|
2 |
import streamlit as st
|
3 |
+
import os
|
4 |
def debug_apk(input_path, output_dir):
|
5 |
command = f"apk-mitm {input_path} -o {output_dir}"
|
6 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|