Import App Shielding SDK library in Android Studio
- 22 Jan 2025
- 1 Minute à lire
- SombreLumière
- PDF
Import App Shielding SDK library in Android Studio
- Mis à jour le 22 Jan 2025
- 1 Minute à lire
- SombreLumière
- PDF
The content is currently unavailable in French. You are viewing the default English version.
Résumé de l’article
Avez-vous trouvé ce résumé utile ?
Merci pour vos commentaires
The App Shielding SDK libraries are available as Maven packages. The Maven packages can be found in the directory path-to-package/SDK/maven.
To add the App Shielding SDK library to your application project:
Open the settings.gradle file for your application.
Make sure that the repositories section includes a maven section with the path to the provided SDK/maven/ directory. For example:
MyApplication/settings.gradle
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() ... maven { url 'path-to-package/SDK/maven' } } }
Add the Shield SDK libraries to the dependencies section.
For example, to use the App Shielding callback API, add the following lines:
MyApplication/app/build.gradle
dependencies { ... implementation 'no.promon.shield:ShieldSDK-callbacks:7.0.2' }
Cet article vous a-t-il été utile ?