Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def process_apk(input_path, output_dir):
|
|
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-
|
16 |
return out_path
|
17 |
else:
|
18 |
st.error(f"Error processing APK: {result.stderr}")
|
|
|
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')
|
16 |
return out_path
|
17 |
else:
|
18 |
st.error(f"Error processing APK: {result.stderr}")
|