Following the same trend of automated analysis in the earlier recipes, this recipe will show how to configure dependency scans and dynamic analysis of Android application builds prior to production deployments.
Configuring continuous integration testing for mobile applications
Getting ready
In this recipe, we will use a Jenkins automation build server and the following tools:
- Mobile Security Framework (MobSF): This is an open source mobile application static and dynamic analysis tool. MobSF is actively being worked on and modified for the mobile security community. MobSF can be downloaded from the following link:
https://github.com/MobSF/Mobile-Security-Framework-MobSF/archive/master.zip
- OWASP Dependency-Check: This is...