[APP][2.3+] Notigola - Paid Software Announcement and Discussion

Notigola allows you to create targeted rules on incoming SMS so you can decide which messages to receive in the default messages app and which only to show in the notification bar.
It is possible to create all the rules that you want acting on various parameters available from Notigola in order to obtain a high level of precision on the filters to be applied.
If your Smartphone is equipped with "Android Jelly Bean" or higher you can also choose which buttons appear on the notification between "Call", "Reply", "Share". In addition to the choice of buttons you can decide whether or not the phone will vibrate and/or play a sound on incoming notifications.
Notigola also has an inbox of filtered messages that you can manage deleting a message at a time, deleting them all at once or by copying the text to use on other apps.
This app can be useful to manage the various:
- I called you
- Operators Call Cost
- Advertising and spam
- Notifications access to sites
- Various SMS notifications...
It can operate by:
- SMS blocker
- SMS Filter
- SMS reader
Supported languages:
- English
- Italian
No doubt you tired of receiving annoying text messages and find yourself full of "useless" communications in your default SMS app, with Notigola you can avoid having a list clogged and you can separate and manage these types of communications.
Remember, this app is totally free and without advertising in it, please leave positive feedback on the Play Store to inspire us to put even more our passion to serve the development of Notigola!
Play Store: https://play.google.com/store/apps/details?id=droidamax.smsstatusbar&hl=en
Updated: August 14, 2013
Current Version: 1.0.2
Requires Android: 2.3.3 and up
Content Rating: Everyone
Price: FREE

With this app I can set brilliant SMS rules for everyone in my address book! Thanks!

Related

Anyone use Bank of America alerts?

When I had a Sprint Mogul Bank of America alerts would come in the form of a text message. Bank of America's site requires a format of [email protected] for the text to be sent. With Sprint it was [email protected].
Anyone know what to enter for this to work with AT&T?
thedocrn said:
When I had a Sprint Mogul Bank of America alerts would come in the form of a text message. Bank of America's site requires a format of [email protected] for the text to be sent. With Sprint it was [email protected].
Anyone know what to enter for this to work with AT&T?
Click to expand...
Click to collapse
Maybe this helps?
Q. What are Text Alerts? (http://www.wireless.att.com/learn/messaging-internet/messaging/faq-text-messaging.jsp 2/3rds down the page)
A. Text Alerts are personalized notifications sent directly to your phone, at times scheduled by you. Manage your day and plan weekends by keeping up-to-date on local weather, headlines, sports scores, personal appointments, and so much more.
Q. How can I set up Text Alerts?
A. You first need to register at Text Alerts. Once you are registered, select My Info. Then select Alerts in the content category box. You will be prompted to choose the time of day, the day of the week, and other relevant details about each alert. Select Save Alert to complete the setup of your alert.
Q. Where can I find the authorization code that is sent to my wireless device when I register?
A. It will appear as a text message on the screen of your wireless device in your message inbox in just a few seconds. Refer to your wireless device's user guide if you have questions on how to read text messages.
Q. If I have my phone turned off or I am on a call, will I still receive my alerts and text messages?
A. The message will appear if you power on within a 24-hour period. If you are on a call, you will continue to receive text messages and alerts, which will not interrupt your call. To ensure that you receive up-to-date information, alerts that are more than 24 hours old will not be sent to your phone.
Q. How many alerts can I store on my wireless device at one time?
A. Memory varies per wireless device—refer to your user manual for details. The number of messages that can be stored is determined by the amount of storage available on your wireless device.
Q. How long can I store my alerts after I have received them?
A. You may store alerts for as long as you wish. (Most devices have limits to storage capabilities and will require deletion of old alerts to allow for new alerts.)
Q. Can I modify an alert?
A. Yes, you can log into MEdia Net™ and delete any of your alerts, as well as temporarily turn them on or off.
I use this a lot:
Any cell number @teleflip.com will work. i.e. [email protected]
...and it's free. You don't even need to sign up for it.
##########@mobile.mycingular.net is what i've always used.
[email protected]

Reject call programmatically

Is there any direct (or convoluted) way to reject an incoming call, i.e. send it directly to voicemail. Meaning
(a) if a call is coming in and matches certain criteria
(b) send the call to VM, and stop the ringing. (programmatically)
I've got (a) under control but I dont know how to do (b).
Any ideas?
Thanks
Jay
Well I know in the phonebook settings there is an option to send directly to voicemail for that particular number but that would require you saving the number in your phone book.
speoples20 said:
Well I know in the phonebook settings there is an option to send directly to voicemail for that particular number but that would require you saving the number in your phone book.
Click to expand...
Click to collapse
+1
I have Telemarketer1 - 7 right now in my phone book and they all go straight to voicemail with that option. Now if there was some way to block "UNKOWN"!
We need a Call Firewall / Blocker Software which can do following.
Register for Intent which can hook Incomming Call events
When Intent is raised if Checks for the number across Predefined Rules in Priority Order if any Rule matched take Action like
Reject Call
Accept and Immediately Reject THIS WILL COST CALLER
Send to Voice Mail
Reject and Reply with SMS
Reject and Create Reminder for Predefined Minutes to Remind us to Call them Back
+1
great idea
Try Youmail (it works for all phones)
There is a program for WM called Mobion MagiCall that would do everything that everyone wants on android but who can port it...
Back to my question...
Folks
I love the lively chit chat but does anyone have an answer to my original question: how do I reject a call programmatically and on the fly (not through phonebook entries set up ahead of time)?
BTW I will have an app available next week on Android Market that allows you to respond to incoming calls with an "I'll call you back asap" text or email, and it will set a reminder for you to call the caller back.
jayandro said:
Folks
I love the lively chit chat but does anyone have an answer to my original question: how do I reject a call programmatically and on the fly (not through phonebook entries set up ahead of time)?
BTW I will have an app available next week on Android Market that allows you to respond to incoming calls with an "I'll call you back asap" text or email, and it will set a reminder for you to call the caller back.
Click to expand...
Click to collapse
OMG!!! YES, WE CAN DO THAT!!!
I was going to kill myself after severe 24 hours of investigating and discovering... But I've found "fresh" solution!
// "cheat" with Java reflection to gain access to TelephonyManager's ITelephony getter
Class c = Class.forName(tm.getClass().getName());
Method m = c.getDeclaredMethod("getITelephony");
m.setAccessible(true);
telephonyService = (ITelephony)m.invoke(tm);
all all all of hundreds of people who wants to develop their call-control software visit this start point
http://www.google.com/codesearch/p?...:http://mylockforandroid\.googlecode\.com&d=0
there is a project. and there are important comments (and credits)
briefly: copy aidl file, add permissions to manifest, copy-paste source for telephony management )))
Some more info for you. AT commands you can send only if you are rooted. Than you can kill system process and send commands but you will need a reboot to allow your phone to receive and send calls =)))
I'm very hapy =) Now my Shake2MuteCall will get an update !
I use tcallblocking lite (search the market for it) to block calls from unknown numbers and any rom with the hacked phone.apk in it allows you to add numbers to a blacklist. No need for additional entries in your contact list
Moved as not Android Development.
I tried Call Firewallv1.40 freeware. It seems to be working at blocking unwanted private calls. I found it here http://www.freewarepocketpc.net/ppc-download-call-firewall-v1-4.html. The price is certainly good.
Features & Options:
a. Accecpt all calls - pretty self explainatory
b. Accept call from My Contacts only - accepts calls from contacts only, others are rejected
c. Reject all calls - pretty self explainatory
d. White List - accepts calls only from the white listed nos
e. Black List - accepts all call except from the black listed nos
f. Black List Pattern - any no STARTING from the black list pattern list is rejected.
for eg. if you enter "123", so all nos STARTING from "123" will be rejected
this is a very nice option with which you can block nos from any particular network, country, city , area or whatever you can think of.

Android call and sms filter application

Android call and sms filter application
I'm coming from a symbian background and have ordered a G1 recently. Been looking in the market place for a privacy application to screen and filter incoming and outgoing calls and sms's to defined numbers. I can not find anything that meets my requirements so am prepared to fund the development of one. (there are several available for symbian).
I've posted a job on elance and have had a couple of replies saying this is not possible in Android - I am suprised to say the least and was wandering if anyone here thought otherwise
heres the description:
------------
Job Description:
To provide an application to filter incoming and outgoing calls and sms. Effectively enabling 'private' communications from the phone.
For pre-determined numbers all incoming calls and sms can be filtered. sms notification disabled and moved to secure area. Calls rejected as busy.
All traces of incoming or outgoing calls and sms that are related to the numbers in the list are hidden.
The app should have the same functionality as Best Private Conversation for Symbian :
http://www.smartphoneware.com/bpc-fo...on-product.php
Will also require trial version time limited.
-----------
Appreciate any feedback
regards
thsese dont filter just block but i thought maybe you can contact the devs http://forum.xda-developers.com/showthread.php?t=478117&page=12

Send an SMS to rejected caller...

I'd like to send an SMS to the caller, when I manually reject an incoming call.
Something like the SMS reply function of Call Firewall application, but just for manual rejects, not for blacklisted callers...
It's an application I saw on Rim Blackberry phone of a friend of mine. When someone calls and he's in a meeting (but for some reason he has the phone on), he just push the red button. The caller receives an SMS like "Sorry, I'm busy, I'll call you later", and the reminder of the call-back goes in the to-do list.
It's something very useful, I wonder I didn't find any WM software able to do this 'simple' matter...
Thanks for any help
Thunder
Some dialers on custom ROMs have that built-in (it's one of the softkeys, however, not the red ignore button). I'd look around at some dialers that you could flash to your phone.
most of htc's newer dialers on newer devices provide the option to "reject with an SMS" in addition to the usual "answer" and "ignore" functionalities.
i believe the dialer from the htc opal was one of the first dialers to offer the feature.
fortunately, in the world of winmo devices, the great people here at xda frequently and successfully provide "rips" of such applications that work just fine on any other device...like the previous post mentions, quite a few custom ROMs include dialers ripped from other devices. so you can add on the desired dialer or look for a ROM with the dialer of your choice built in, so search away!
PowerSMS: http://www.trinketsoftware.com/powersms/
has a whole bunch of SMS related things, which includes a reject SMS auto reply function
ThePengwin said:
PowerSMS: http://www.trinketsoftware.com/powersms/
has a whole bunch of SMS related things, which includes a reject SMS auto reply function
Click to expand...
Click to collapse
As per their web site, this tool replyes to every incoming call with an SMS, when enabled, and this is a standard feature of callfirewall.
What I need is to manually reject a call with some button, and send an sms to the caller.
Much more, I'd like to find the task "call back Mr. Jones" in my calendar...
I'm going to look into some dialer plugin...
Thanks
Thunder
Spb phone suite has all the functions you need!
* Profiles
* Missed call notifications
* Unread SMS notifications
* Call filtering
* Reject & reply with SMS
* Photo speed dial
* Photos in call log
* Wireless manager
* Automatic profile
* Wireless settings in profiles
* Customizable Today plug-in
YES it cost money... but its worth it, its the best app for htc-phones out there!
se1988 said:
Spb phone suite
Click to expand...
Click to collapse
Thanks a lot, my friend, but unfortunately this app does not install on my Kaiser.
Don't know exactly why, but I downloaded (twice) the demo cab and it is not installing.
Any other idea?
Thunder
Just to inform everybody here around that S2U2 has this feature built-in.
I had the solution in my hands and I was not aware of this...
Bye
Thunder
Try "QSMS To Buddy:FullFeatured" free app from android market
Use "QSMS to buddy" App from android market.
- This app allows you to send sms to missed/rejected calls.
- It also allows you to send a 'default' sms after user specified time period. e.g. you can specify to send a msg after 10 secs
- *** You send sms during "Outgoing" call reject as well
- *** You have ability to messages while sending the reject sms depending on the context. e.g. "I will call back in 10 mins" instead of "I will call back later"
There are other interesting features as well in this app. Watch demo at youtube with key word "QSMS : Quick SMS To Buddy Android App by Onion Systems"
AppUsabilityExpert
Reject++
If you are looking for an app to let you reject incoming calls with predefined or custom SMS and setup a reminder to return a call as well..
so check Reject++
You can:
- Reject a call with SMS, Reminder, Or Both.
- Convenient Slider on top of incoming call screen, slider it up and go with Reject++
- Smart SMS Templates with "Tags"
- Smart Reminders Scheduling Engine.
- Works with mobile screen locked or OFF
- Notifications works no matter if the app is active or not.
Check much more Features & Screenshots for Reject++

GMail Problems - Notification Order, Quick-Reply, "Ignore Battery-Optimisation"

GMail Problems - Notification Order, Quick-Reply, "Ignore Battery-Optimisation"
Hi
At the moment I am faceing some annoying problems regarding the use of the GMail-App on the Mate 10 (C636).
Notification Order
When receiving a bunch of E-Mails , they aren't ordered by receiving time. As you can see on the screenshot attached the general notification time says "Just now"
but the E-Mails aren't sorted by actual receiving time.
Quick-Reply
Within the GMail-notifications I would like to make use of the Quick-Reply actions / or in the case of GMail - the standard actions.
But I often need to swipe one notification to the "right" , deleting the notification for one of the mails . After that i can make actual use of the quick-reply toggles. It seems to me, something is holding gmail in the background?
Ignore Battery-Optimisation
In addition to the second point of this list, i can't grant GMail in the "Ignore Battery-Optimisation"-privilege, due to the app isn't listed in this menu. More intresting: The e-mail client of EMUI is present and is granted these rights.
The setting should be under: Seetings - Apps & Notifications - Apps - Seetings - Special Acces - Ignore Accu-Optimisation.
Can somebody confirm these "bugs"(?), can give an workaround or maybe give solutions how to solve these issues?
Thanks in advance!

Categories

Resources