You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,19 @@ Follow these steps to add this SDK as a dependency to your project.
50
50
```
51
51
implementation("com.google.code.gson:gson:2.+")
52
52
implementation ("com.squareup.okio:okio:2.+")
53
-
implementation("com.telesign:telesign:3.+")
53
+
implementation("com.telesign:telesign:4.+")
54
54
```
55
55
56
56
That last dependency pulls in the Telesign Self-service Java SDK.
57
57
58
+
## Development tasks
59
+
60
+
Use these Gradle tasks during development:
61
+
62
+
- Run unit tests: `./gradlew test`
63
+
- Run linter checks: `./gradlew lint`
64
+
- Run CI validation (tests + linter): `./gradlew ciTest`
65
+
58
66
## Authentication
59
67
60
68
If you use a Telesign SDK to make your request, authentication is handled behind-the-scenes for you. All you need to provide is your Customer ID and API Key. The SDKs apply Digest authentication whenever they make a request to a Telesign service where it is supported. When Digest authentication is not supported, the SDKs apply Basic authentication.
0 commit comments