Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ def process_apk(input_path, output_dir):
|
|
9 |
# Run apk-mitm command
|
10 |
command = f"java -jar uber-apk-signer.jar --apks {input_path}"
|
11 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
12 |
-
st.write(f"Processed APK file found at: {result}")
|
13 |
# Check if the process was successful
|
14 |
if result.returncode == 0:
|
15 |
out_path = input_path.replace('.apk', '-aligned-debugSigned.apk')
|
|
|
9 |
# Run apk-mitm command
|
10 |
command = f"java -jar uber-apk-signer.jar --apks {input_path}"
|
11 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
12 |
+
#st.write(f"Processed APK file found at: {result}")
|
13 |
# Check if the process was successful
|
14 |
if result.returncode == 0:
|
15 |
out_path = input_path.replace('.apk', '-aligned-debugSigned.apk')
|