Contains:
- Static analysis
- Network analysis
- Connection helper
exodus-core is available from PyPI:
pip install exodus-core
Add the following line in your requirements.txt
(replace 'XX' by the desired subversion):
exodus-core==XX
Clone this repository:
git clone https://github.com/Exodus-Privacy/exodus-core.git
cd exodus-core
Install dexdump
:
sudo apt-get install dexdump
Create a gplaycli
configuration file:
mkdir ~/.config/gplaycli
nano ~/.config/gplaycli/gplaycli.conf
containing
[Credentials]
gmail_address=
gmail_password=
#keyring_service=gplaycli
token=True
token_url=https://matlink.fr/token/email/gsfid
[Cache]
token=~/.cache/gplaycli/token
[Locale]
locale=en_US
timezone=CEST
Create Python virtualenv
:
virtualenv venv -p python3
source venv/bin/activate
Install dependencies:
pip install -r requirements.txt
Run tests:
python -m unittest discover -s exodus_core -p "test_*.py"