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
// Define the dependency version
buildscript {
ext {
msftTeamsVersion ='THE_VERSION'
}
}
// Add the Jitpack repository
repositories {
maven { url 'https://jitpack.io' }
}
// Add the dependency
dependencies {
compile "com.github.somemove:mstf-teams-kt:$msftTeamsVersion"
}
Usage
Kotlin
val message =ConnectorMessage(title ="Title", text ="The message text...")
val webhookURL :String="https://..."val client :Teams=Teams().with(webhookURL)
val result :Boolean= client.publish(message)