1 parent 3a83cc9 commit b9ffe82Copy full SHA for b9ffe82
2 files changed
android/app/src/main/java/com/httpsms/LogtailTree.kt
@@ -46,7 +46,10 @@ class LogtailTree: Timber.DebugTree() {
46
.build()
47
48
Thread {
49
- client.newCall(request).execute()
+ try {
50
+ client.newCall(request).execute()
51
+ } catch(ex: Exception) {
52
+ }
53
}.start()
54
}
55
web/.env.production
@@ -4,5 +4,5 @@ APP_URL=https://httpsms.com
4
APP_NAME="Http SMS"
5
APP_GITHUB_URL=https://github.com/NdoleStudio/httpsms
6
APP_DOCUMENTATION_URL=https://api.httpsms.com
7
-APP_DOWNLOAD_URL=https://github.com/NdoleStudio/httpsms
+APP_DOWNLOAD_URL=https://github.com/NdoleStudio/httpsms/releases/download/v0.0.1/HttpSms.apk
8
APP_ENV=production
0 commit comments