Android SDK
Installation
Android Studio
4 min
update your gradle dependencies (required) gradle version 7 0 and above in your root level (project level) gradle settings file ( \<project>/settings gradle ), add the following repository to your dependencyresolutionmanagement block dependencyresolutionmanagement { repositories { // other repositories maven { url "https //mobile sdks forter com/android" credentials { username "forter android sdk" password "hvyumafjvqyqfyogsmnaefgdr84esqig" } } } } earlier gradle versions in your module (app level) gradle file (usually \<project>/\<app module>/build gradle kts or \<project>/\<app module>/build gradle ), add the following repository to your repositories block repositories { // other repositories maven { url "https //mobile sdks forter com/android" credentials { username "forter android sdk" password "hvyumafjvqyqfyogsmnaefgdr84esqig" } } } these credentials should be included in your version control (i e git) since they are non sensitive and used primarily to restrict bot and search engine access to the repository add the fortersdk as a dependency in your module (app level) gradle file (usually \<project>/\<app module>/build gradle kts or \<project>/\<app module>/build gradle ), add the following dependency implementation 'com forter mobile\ fortersdk 3 0 5'