decompile closed source apk back into java code
-
get apk's java source code
-
caching system for apk previously uploaded
-
view all methods and class name in the web
git clone https://github.com/KuhakuPixel/online-apk-decompiler-web-ui.git
# https://stackoverflow.com/questions/72830343/retrieve-original-files-after-a-git-clone-with-git-lfs
# Fetch all the LFS files from the remote
git lfs fetch
# Replace the pointer files to the actual files
git lfs checkout
after running command below
open http://localhost:8000/ to open the web app
docker-compose up
fresh install without cache
docker compose down && docker compose build --no-cache && docker compose up
start mongodb (ubuntu)
sudo systemctl start mongod
https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/
run the backend
cd backend
gradle bootrun
run the frontend
cd frontend
npm run dev