Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Latest commit

 

History

History
78 lines (51 loc) · 1.34 KB

readme.md

File metadata and controls

78 lines (51 loc) · 1.34 KB

Online Decompiler

decompile apk in one click in a website

decompile closed source apk back into java code

Features

  • get apk's java source code

  • caching system for apk previously uploaded

  • view all methods and class name in the web

Techstack

Frontend

Backend

Database

Setup

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

Running

after running command below

open http://localhost:8000/ to open the web app

Docker

docker-compose up

fresh install without cache

docker compose down && docker compose build --no-cache && docker compose up

Locally

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