Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -155,10 +155,10 @@ if uploaded_file is not None or url_input:
|
|
155 |
# Execute the process based on user choice
|
156 |
if processing_option == 'Process XAPK' and input_path.endswith('.xapk'):
|
157 |
st.write("Processing XAPK...")
|
158 |
-
|
159 |
elif processing_option == 'Sign APK' and input_path.endswith('.apk'):
|
160 |
st.write("Signing APK...")
|
161 |
-
|
162 |
elif processing_option == 'Debug APK' and input_path.endswith('.apk'):
|
163 |
st.write("Debugging APK...")
|
164 |
output_path = debug_apk(input_path, output_dir)
|
|
|
155 |
# Execute the process based on user choice
|
156 |
if processing_option == 'Process XAPK' and input_path.endswith('.xapk'):
|
157 |
st.write("Processing XAPK...")
|
158 |
+
output_path = process_xapk(input_path)
|
159 |
elif processing_option == 'Sign APK' and input_path.endswith('.apk'):
|
160 |
st.write("Signing APK...")
|
161 |
+
output_path = process_sign(input_path)
|
162 |
elif processing_option == 'Debug APK' and input_path.endswith('.apk'):
|
163 |
st.write("Debugging APK...")
|
164 |
output_path = debug_apk(input_path, output_dir)
|