deepak191z commited on
Commit
4c53a66
·
verified ·
1 Parent(s): 5a1e926

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- result = process_xapk(input_path)
159
  elif processing_option == 'Sign APK' and input_path.endswith('.apk'):
160
  st.write("Signing APK...")
161
- result = 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)
 
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)