Spaces:
Paused
Paused
File size: 2,442 Bytes
3ef37b3 12102c5 ab7e9ef 12102c5 b5d200a 21fd4fa 5a1e926 ab7e9ef 101246c 5a1e926 eb7e9a5 5a1e926 ab7e9ef 5a1e926 ab7e9ef 5a1e926 4c53a66 5a1e926 4c53a66 5a1e926 ab7e9ef 5a1e926 eb7e9a5 5a1e926 12102c5 5a1e926 12102c5 5a1e926 ab7e9ef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
import streamlit as st
import os
from utils.apk_debug import debug_apk
from utils.apk_process import process_xapk, process_sign, xapk_debug
from utils.file_handling import handle_file_upload, handle_url_download
from utils.cleanup import cleanup_files
st.title("ANDROID APP DEBUGGING")
uploaded_file = st.file_uploader("Upload APK file", type=['apk', 'xapk', 'apks'])
url_input = st.text_input("Or enter APK URL")
processing_option = st.radio("Choose the processing type:", ('Process XAPK', 'Sign APK', 'Debug APK', 'XAPK Debug'))
if uploaded_file is not None or url_input:
upload_dir = "uploads"
if not os.path.exists(upload_dir):
os.makedirs(upload_dir)
if uploaded_file is not None:
input_path = handle_file_upload(uploaded_file, upload_dir)
elif url_input:
input_path = handle_url_download(url_input, upload_dir)
output_dir = upload_dir
if processing_option == 'Process XAPK' and input_path.endswith('.xapk'):
st.write("Processing XAPK...")
output_path = process_xapk(input_path)
elif processing_option == 'Sign APK' and input_path.endswith('.apk'):
st.write("Signing APK...")
output_path = process_sign(input_path)
elif processing_option == 'Debug APK' and input_path.endswith('.apk'):
st.write("Debugging APK...")
output_path = debug_apk(input_path, output_dir)
elif processing_option == 'XAPK Debug' and input_path.endswith('.xapk'):
st.write("Debugging XAPK...")
output_path = xapk_debug(input_path, output_dir)
else:
st.error("The selected process is not compatible with the uploaded file type. Please ensure the file type matches your selection.")
output_path = None
if output_path:
st.success("APK processed successfully!")
st.write("Output path:")
st.text(output_path)
if os.path.exists(output_path):
with open(output_path, "rb") as f:
file_data = f.read()
st.download_button(
label="Download Processed APK",
data=file_data,
file_name=os.path.basename(output_path),
mime="application/vnd.android.package-archive"
)
else:
st.error("Processed APK file not found. Please try again.")
else:
st.error("Failed to process APK. Please try again.")
cleanup_files(upload_dir) |