Skip to content

Files

Latest commit

f2e83e7 · Jan 27, 2021

History

History
13 lines (11 loc) · 447 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 447 Bytes

This is an Android app that receives SMS and posts the contents of the message to Slack. It was created to pass the Apple certification.

created to pass the Apple certification.

How to use

You need to replace slack's WebHookUrl in the code.

interface SlackService {
    @POST("Put the slack webhook url here. It should be after `https://hooks.slack.com/services/`")
    suspend fun postMessage(@Body body: SlackMessageBody)
}