We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Follow current steps to compile Droidefense
To successfully compilate latest version of Droidefense, please follow next guidelines:
git clone git@github.com:droidefense/engine.git
or if you have ssh banned on your network, use HTTPS instead as follows:
git clone https://github.com/droidefense/engine git clone git@github.com:droidefense/engine.git
build.sh
cd engine ./build.sh
In case you are wondering what the hell the script doing, please check it out:
#!/bin/bash function prerequirements(){ echo " ########################################## " echo ' Installing prerequisites...' echo " ########################################## " sudo apt install -y maven } function main(){ echo " ########################################## " echo ' Building droidefense from current version' echo " ########################################## " mvn clean install echo " Building done " } set -e prerequirements main