Description: Scan QRcode To Automatically Send SMS Based On User Carrier.
Created By: @BaddourAbdallah Using Ionic Framework
To setup the app:
1.First create a new blank ionic project:
$ ionic start [appname] blank
2.Replace folders/files of my project in the blank project you just create in the www folder.
3.Install ngCordova.
4.Install cordovaSMS plugin.
5.Install whitelist plugin:
$ ionic plugin add https://github.com/apache/cordova-plugin-whitelist.git
Add these 2 lines in config.xml below:
<access origin="*"/>
<access origin="tel:*" launch-external="yes" />
<access origin="mailto:*" launch-external="yes" />
6.Insatll barcodeScanner plugin.
7.Insatll sim plugin.
8.Generate QR code using the following text format:
carriername1:receiver_PhoneNumber:message_here-carrienamer2:receiver_PhoneNumber:message_here-carriername3:....
example:
vodafone:7640000123:Hello Vodafone users-orange:7650000321:Hello orange users
I used this QRcode Generator Site while developing this app.
9.To build and run the app on android:
$ ionic platform add android
$ ionic run android
#License See the LICENSE file for license rights and limitations (MIT). And you may not use the application for any illegal or unauthorized purpose. You agree to comply with all laws, rules and regulations (for example: federal, state, local and provincial) applicable to your use of the application.