[PR #75] [CLOSED] By passing the 100 sms per hour per app limit on android #358

Closed
opened 2026-02-28 01:24:19 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ushahidi/SMSSync/pull/75
Author: @vaneyck
Created: 1/21/2013
Status: Closed

Base: developHead: develop


📝 Commits (10+)

  • b3f3fda added code smssync portal one
  • 9a3e841 got first sms portal to work
  • 0295a4a removed unecessary files
  • c94d940 added .gitignore for sms-portal
  • 4750ab0 Removed smssyncportal so as to move it to reperate repo
  • 345bb55 deleted smssycportal code
  • 66c0a6d can enable or disable use of sms-portal from the settins screen
  • d9ecebc allow smssync to use sms-portal-1 and sms-portal-2
  • 86c4988 fixed naming error
  • aaa6636 app detects whether to connect to the sms-portals

📊 Changes

24 files changed (+2195 additions, -21 deletions)

View changed files

abslib/.settings/org.eclipse.jdt.core.prefs (+11 -0)
abslib/bin/classes/com/actionbarsherlock/internal/nineoldandroids/animation/PropertyValuesHolder.class (+0 -0)
abslib/gen/.gitignore (+1 -0)
abslib/gen/R.java.d (+597 -0)
abslib/libs/android-support-v4.jar (+0 -0)
abslib/local.properties (+10 -0)
smssync/.classpath (+9 -0)
smssync/.gitignore (+11 -0)
smssync/lint.xml (+3 -0)
smssync/proguard-project.txt (+20 -0)
smssync/res/drawable-hdpi/sms_portal_installed.png (+0 -0)
smssync/res/drawable-ldpi/sms_portal_installed.png (+0 -0)
smssync/res/drawable-mdpi/sms_portal_installed.png (+0 -0)
smssync/res/drawable-xhdpi/sms_portal_installed.png (+0 -0)
smssync/res/layout/sms_portals.xml (+94 -0)
📝 smssync/src/main/AndroidManifest.xml (+7 -0)
📝 smssync/src/main/java/org/addhen/smssync/MainApplication.java (+83 -20)
📝 smssync/src/main/res/values/strings.xml (+7 -1)
📝 smssync/src/main/res/xml/preferences.xml (+13 -0)
smssync/src/org/addhen/smssync/MessengerConnection.java (+8 -0)

...and 4 more files

📄 Description

Hi, So to by pass the 100 sms per hour per app limit on android i have developed a "sms-portal". The "sms-portal" is an app that has a service that works as an sms sender. SMSSync round robins between itself and the sms-portal when sending the messages. Ideally we can have as many senders as we can.
Please have a look and let me know.
Thanks


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ushahidi/SMSSync/pull/75 **Author:** [@vaneyck](https://github.com/vaneyck) **Created:** 1/21/2013 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b3f3fda`](https://github.com/ushahidi/SMSSync/commit/b3f3fda13328a3cc014ca04fba76157152e9da7e) added code smssync portal one - [`9a3e841`](https://github.com/ushahidi/SMSSync/commit/9a3e841dee5cdb54bf1e39d2528bb2558172b14f) got first sms portal to work - [`0295a4a`](https://github.com/ushahidi/SMSSync/commit/0295a4afd454dd8bc6594b44798cfea166d7bac9) removed unecessary files - [`c94d940`](https://github.com/ushahidi/SMSSync/commit/c94d9409e7bcb00fa237dd0437a73fb7492a6c07) added .gitignore for sms-portal - [`4750ab0`](https://github.com/ushahidi/SMSSync/commit/4750ab097ab1d858d509545bb26ba387b44ed7c9) Removed smssyncportal so as to move it to reperate repo - [`345bb55`](https://github.com/ushahidi/SMSSync/commit/345bb550001185f1404ade46b39c134490af90f3) deleted smssycportal code - [`66c0a6d`](https://github.com/ushahidi/SMSSync/commit/66c0a6d23e3f9ded4590fee024075d82890a6aa2) can enable or disable use of sms-portal from the settins screen - [`d9ecebc`](https://github.com/ushahidi/SMSSync/commit/d9ecebc41513d024f40286ec0a1f1a49229c3af0) allow smssync to use sms-portal-1 and sms-portal-2 - [`86c4988`](https://github.com/ushahidi/SMSSync/commit/86c4988a312c4da4593eb74ad7ef44b04d222df2) fixed naming error - [`aaa6636`](https://github.com/ushahidi/SMSSync/commit/aaa66361c47afaf5aa1925812e830944582ab313) app detects whether to connect to the sms-portals ### 📊 Changes **24 files changed** (+2195 additions, -21 deletions) <details> <summary>View changed files</summary> ➕ `abslib/.settings/org.eclipse.jdt.core.prefs` (+11 -0) ➕ `abslib/bin/classes/com/actionbarsherlock/internal/nineoldandroids/animation/PropertyValuesHolder.class` (+0 -0) ➕ `abslib/gen/.gitignore` (+1 -0) ➕ `abslib/gen/R.java.d` (+597 -0) ➕ `abslib/libs/android-support-v4.jar` (+0 -0) ➕ `abslib/local.properties` (+10 -0) ➕ `smssync/.classpath` (+9 -0) ➕ `smssync/.gitignore` (+11 -0) ➕ `smssync/lint.xml` (+3 -0) ➕ `smssync/proguard-project.txt` (+20 -0) ➕ `smssync/res/drawable-hdpi/sms_portal_installed.png` (+0 -0) ➕ `smssync/res/drawable-ldpi/sms_portal_installed.png` (+0 -0) ➕ `smssync/res/drawable-mdpi/sms_portal_installed.png` (+0 -0) ➕ `smssync/res/drawable-xhdpi/sms_portal_installed.png` (+0 -0) ➕ `smssync/res/layout/sms_portals.xml` (+94 -0) 📝 `smssync/src/main/AndroidManifest.xml` (+7 -0) 📝 `smssync/src/main/java/org/addhen/smssync/MainApplication.java` (+83 -20) 📝 `smssync/src/main/res/values/strings.xml` (+7 -1) 📝 `smssync/src/main/res/xml/preferences.xml` (+13 -0) ➕ `smssync/src/org/addhen/smssync/MessengerConnection.java` (+8 -0) _...and 4 more files_ </details> ### 📄 Description Hi, So to by pass the 100 sms per hour per app limit on android i have developed a "sms-portal". The "sms-portal" is an app that has a service that works as an sms sender. SMSSync round robins between itself and the sms-portal when sending the messages. Ideally we can have as many senders as we can. Please have a look and let me know. Thanks --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 01:24:19 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SMSSync#358
No description provided.