Skip to content

Commit

Permalink
Update documentation and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Bogomolov committed Jun 5, 2021
1 parent c1c226e commit f3efd9e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
# Simple incoming SMS to URL forwarder
Set sender phone number or name and URL. If you want to send any SMS - use * (asterisk symbol) as a name.
Every incoming SMS will be sent immediately to provided URL.
Use it as Webhook for your SMS
# Incoming SMS to URL forwarder

## Limitations
The current version will try to send a text to the URL immediately. If no Internet connection, the app will retry once later.
The app will not check the HTTP response code. If the server responded with any code, it will be treated as sent.
## How to use
Set sender phone number or name and URL. It should match the number or name you see in the SMS messenger app.
If you want to send any SMS to URL, use * (asterisk symbol) as a name.

Every incoming SMS will be sent immediately to the provided URL.
If the response code is not 2XX or the request ended with a connection error, the app will try to send again up to 10 times.
Minimum first retry will be after 10 seconds, later wait time will increase exponentially.
If the phone is not connected to the internet, the app will wait for the connection before the next attempt.

## Screenshots
<img alt="Incoming SMS Webhook Gateway screenshot 1" src="https://raw.githubusercontent.com/bogkonstantin/android_income_sms_gateway_webhook/master/screenshots/1.jpg" width="30%"/> <img alt="Incoming SMS Webhook Gateway screenshot 2" src="https://raw.githubusercontent.com/bogkonstantin/android_income_sms_gateway_webhook/master/screenshots/2.jpg" width="30%"/> <img alt="Incoming SMS Webhook Gateway screenshot 3" src="https://raw.githubusercontent.com/bogkonstantin/android_income_sms_gateway_webhook/master/screenshots/3.jpg" width="30%"/>
<img alt="Incoming SMS Webhook Gateway screenshot 1" src="https://raw.githubusercontent.com/bogkonstantin/android_income_sms_gateway_webhook/master/screenshots/1.png" width="30%"/> <img alt="Incoming SMS Webhook Gateway screenshot 2" src="https://raw.githubusercontent.com/bogkonstantin/android_income_sms_gateway_webhook/master/screenshots/2.png" width="30%"/> <img alt="Incoming SMS Webhook Gateway screenshot 3" src="https://raw.githubusercontent.com/bogkonstantin/android_income_sms_gateway_webhook/master/screenshots/3.png" width="30%"/>

## Download apk
Download apk from [release page](https://github.com/bogkonstantin/android_income_sms_gateway_webhook/releases)

## Recommendation
Use external monitoring tools like [UpTime.onl](https://uptime.onl/) to monitor your webhook URL and prevent it from downtime.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
compileSdkVersion 30
buildToolsVersion "29.0.3"

defaultConfig {
applicationId "tech.bogomolov.incomingsmsgateway"
minSdkVersion 19
targetSdkVersion 30
versionCode 5
versionName "1.1"
versionCode 6
versionName "2.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Binary file removed screenshots/1.jpg
Binary file not shown.
Binary file added screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed screenshots/2.jpg
Binary file not shown.
Binary file added screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed screenshots/3.jpg
Binary file not shown.
Binary file added screenshots/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f3efd9e

Please sign in to comment.