https://github.com/zscaler/zscaler-sdk-android
Zscaler Development Kit (Zscaler SDK), part of the Zscaler Zero Trust Exchange™ platform, combines a set of robust capabilities to protect the integrity of your intellectual property, secure network communications from your mobile application, and prevent breaches against your APIs and core backend services.
https://github.com/zscaler/zscaler-sdk-android
Last synced: 4 months ago
JSON representation
Zscaler Development Kit (Zscaler SDK), part of the Zscaler Zero Trust Exchange™ platform, combines a set of robust capabilities to protect the integrity of your intellectual property, secure network communications from your mobile application, and prevent breaches against your APIs and core backend services.
- Host: GitHub
- URL: https://github.com/zscaler/zscaler-sdk-android
- Owner: zscaler
- License: other
- Created: 2024-06-14T22:47:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-18T22:22:06.000Z (over 1 year ago)
- Last Synced: 2025-03-28T20:46:43.563Z (about 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 246 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zscaler SDK for Mobile Apps - Android
Zscaler Development Kit (Zscaler SDK), part of the Zscaler Zero Trust Exchange™ platform, combines a set of robust capabilities to protect the integrity of your intellectual property, secure network communications from your mobile application, and prevent breaches against your APIs and core backend services.
## Integration
1. Make sure gpr.user and gpr.key are set to your github username and access token in global gradle.properties file at ~/.gradle/gradle.properties
2. Add the Github repository to the dependencyResolutionManagement repositories in settings.gradle.
```
dependencyResolutionManagement {
repositories {
maven {
name = "ZscalerSDKAndroid"
url = uri("https://maven.pkg.github.com/zscaler/zscaler-sdk-android")
credentials {
username = settings.extra.get("gpr.user") as String ?: System.getenv("GITHUB_USERNAME")
password = settings.extra.get("gpr.key") as String ?: System.getenv("GITHUB_TOKEN")
}
}
}
}
```
3. Install Zscaler SDK in the dependencies section of build.gradle.
```
dependencies {
implementation("com.zscaler.sdk:zscalersdk-android:latest.release")
}
```
## Git Hub Access Token
Check the below link for generating the access token [[here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#authenticating-to-github-packages)]