emergency app - App Stores

Hi Guys,
I have a question I am design an app for evacuation emergency, part of the design I have to make sure that if there are users in the building I have to receive notification during the evacuation emergency is there a way to keep tracking down the user activity during the emergency,
thx

Related

call management app?

Can someone recommend good call management app?
Required functions:
Rejecting (best by showing busy status to the caller)
or directing to voice mail - all (or specified) calls except from address book
logging feature
PS Just recieved my kaiser today
I remember seeing SPB Software House (www.spbsoftwarehouse.com) has something of the sort. SPB Phone Suite I think?
rmask said:
Can someone recommend good call management app?
Required functions:
Rejecting (best by showing busy status to the caller)
or directing to voice mail - all (or specified) calls except from address book
logging feature
PS Just recieved my kaiser today
Click to expand...
Click to collapse
Novomobile Smartfilter Pro, or Photo Contacts (pocketx I think) will both do this based on criteria you set, you might also search the forum here for call firewall. That one is a freebie.
Search for callfirewall in this forum...
I have been using Magicall for some time now and love it. Able to block private numbers, send automated sms with individual messages to groups on your phone and even auto reply to sms's with individual messages to categories or certain contacts. Try it
yeah i also use call firewall, to narow down ur search try the development and hacking forum
SPB Phone Suite does provide blacklist/whitelist capabilities and reply with SMS (among other things).
It is a paid program, so if you're looking for free solutions, this isn't it.
Installed call firewall
free and not bloated with useless features
thanks everyone.
Afternoon !!!
I have a MDA Compact IV & I am looking for the best hopefully ( free ) tool to manage my calls & text messages.
Have previously owned Nokia's & Sony's I am used to being able to set up caller group's & set up profile's on my phones.
The Compact does not seem to allow you to do this !!
Is there a way of doing this I have over looked or a software package you would recommend?
Thanks
rmask said:
Installed call firewall
free and not bloated with useless features
thanks everyone.
Click to expand...
Click to collapse
I was using that also. But if you are on a call when an rejected number comes in it will disconnect both calls.
I'm currently using magicall and it works great.
MagiCall is fantastic app.

CALL/SMS BLOCKER plus sms auto response

Call_SMS Blocker. I found this program the other day and I just wanted to share it with everyone. This app is amazing! I searched everywhere to find something like this. With this software you can COMPLETELY block both calls and sms. Also it will send an automatic sms on your behalf when your busy. Your probably saying, yeah well that new PowerSMS program can do auto sms replies. Well did I mention that this app not only sends auto sms replies to callers but also to friends who TEXT YOU!! I think I found only like 1 other app that could do that and it wasnt nearly as good as this one. Most other ones out there either only allow you to select "known numbers" or "unkown numbers" to reply to. Well with Call_SMS Blocker, you can totally customize the lists of people that will receive your auto reply. You can even make custom messages for each individual person instead of just 1 master message like many other apps.
The only bad things about this software though is that it does cost money and it is a little confusing on how to set it up. But once you figure this thing out it is very powerful and by far the best call blocker sms blocker and sms auto responder out there!
If anyone decides to get this app I would be more than happy to help you out with getting it up and running and figuring out the settings to do what you want it to do.
This was just one of the best apps I have found in awhile and I just wanted to let others know about it. Thanks for taking the time to read this and I hope this program can come in handy for others like it did me.
have you tried this on WM6? link says WM5
Yes it will work on WM6. I am using it on my stock Tilt WM6 pro and it works perfectly. See, under the Download/Buy section. It says its available for WM5/WM6.x
This looks brilliant - purchased
Right, purchased this yesterday and it's awesome.
I have an annoying issue with an alarm system (secom) at my workplace, and being a keyholder, I really can't be chewed with middle-of-the-night (false) callouts. Tried to use another app to set unknown numbers to use a silent ringtone, but that didn't help in the middle of the night because of the ensuing answerphone notification.
I don't like the thought of turning my phone off, or putting onto silent in case of real emergencies from people I care about D).
Anyhoo....
.. this app is perfect. Simulates an immediate 'hangup' to unknown numbers, effectively (a) stopping you hearing them call and (b) disallowing them the ability to leave an answerphone message.
*breathes*
*happy*

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

Dialer app - specific functions for kid phone

Hello guys,
I was looking for kids mode like the one from Samsung. Unfortunately my kid's phone is not samsung and i wasnt able to port the application to work on Sony Device.
The main reason for this is that they had a Dialer application for kids which shows no phone number but ONLY the name of the mother/father contacts while calling. I want to use this function to make the phone more secure in case is stolen or robbed. As well it offers to block any other incoming calls except the selected ones.
@ktmom suggested me to try with a Tasker. I've never been experience a similar software for this kind of things.
Could you please gimme some advices or help regarding my needs and suggest me from where to start.
Thanks in advance.
Hi Ho [emoji16]
The plan I would start with is to create a shortcut on the desktop or a notification with call mom (or dad) buttons. Then use tasker to directly dial the numbers (as variables) without having them entered into the phone's contacts.
The trick is the dialer history will keep a history of called numbers, but I think that can be deleted; though we may need one or two plugins to tasker to achieve that reliably.
If this is in line with your goals, then I'll be happy to create a task or two to handle this that you can import. That is easier than teething to develop it yourself as a beginner.
I'm at the airport waiting for my daughter's flight, but let me know if this will work, or any ideas you have.
Sure, let's do it like that with your help. And in the process of developing we can sharpen it.
BTW thank you so much for your help and patience. I do really appreciate your help. ????
I actually just got home. Is there a timeframe for this? I'm thinking Christmas or similar. Otherwise I'll spend some time this weekend to come up with something for you.
This is just a basic set of tasks to create quick dialers to Mom and Dad, without needing the numbers to have been entered into the contacts app.
One task, "create shortcuts", sets two of Tasker's quick setting tiles. One will call Dad, the other will call Mom. The use of the quick settings tiles should help prevent accidental calls and still be convenient.
After importing the linked project, go to the device's quick settings editor and drag the first two Tasker tiles into the active area. The tasks won't actually appear set to the tiles until they are in the active area.
The task, "create shortcuts" should run on import of this project, performing the configuration mentioned above; associating the tiles with the "call mom" and "call dad" tasks.
The icons are set in the respective "call mom" or "call dad" task. To change the icon, enter the task then tap the icon at the bottom and select a new one. The "create shortcuts" task may need to be run again (manually) to update the tile's icon.
You must go to the "dialer" task and edit the value in the "To" field within the first two actions to the appropriate phone numbers.
The left facing arrow at the top left of the screen exits out of the task and saves the changes. You should also make a habit of tapping the checkmark [emoji736] at the top of the screen after saving a task, which saves the changes to Tasker. That checkmark is available only when there are changes to be saved.
This is just a start, hoping to get feedback if this is the right direction for you.
Import Kids Phone project.
Hey,
thanks a lot for the time you spent for this.
I've tested it and it calls with no issues.
Now we have to make the phone numbers to disappear. Can we put a fixed custom title? This is because it uses the name written in the contact list.
BTW is there an option to drop an icon on the desktop of the phone?
Thanks again for your great help!
IMalchev said:
Hey,
thanks a lot for the time you spent for this.
I've tested it and it calls with no issues.
Now we have to make the phone numbers to disappear. Can we put a fixed custom title? This is because it uses the name written in the contact list.
BTW is there an option to drop an icon on the desktop of the phone?
Thanks again for your great help!
Click to expand...
Click to collapse
Yes, we can create a desktop shortcut. Instead of the tiles?
What do you mean "it uses the name in the contact list"? Do you mean in the call history?
I meant that when I run the call from the tasker it uses the name from the contact book/history. This is not big issue, but it just wondering if it's possible.
Thank you
IMalchev said:
I meant that when I run the call from the tasker it uses the name from the contact book/history. This is not big issue, but it just wondering if it's possible.
Thank you
Click to expand...
Click to collapse
That is the relationship the phone app has with the contact app. You have to remove the names from the contact app.
I'm confused. I thought the goal here is to obfuscate the phone numbers so if the phone is picked up by a "stranger", the numbers are not evident.
If I was, for example, a stalker, and I took the child's phone to get phone numbers, the first place I would look is in the contacts app. The second place is in the call log. Can you help me understand what is and isn't necessary here.
To create the task to remove the call's history from the history, I have to sort out the contentrovider structure for the phone database. I've explored the text messaging DB, but I need to be on my computer to find the phone DB structure.

Categories

Resources