Notifications about the blocked call - Amazfit

Hi!
My amazfit works great besides one thing. Although I am not sure if it's not the problem on the phone sideā€¦ So I use an app to block unwanted calls. It works fine on the phone, I don't get any call from the blacklist.
But Amazfit notifies me about it! For a few seconds I see what number is calling me. It's really annoying since I need to check my watch every time it vibrates. I think it is because Amazfit is higher in the priority list, so first the call goes there, then it is blocked in the app. Is there a way to switch that, so the call is blocked before it goes to the Amazfit? Thanks!

No. Unless, maybe, there is a third-party app compatible with your warch that can handle call notifications with some filter or delay. I don't know any...

Related

restricted calls... anyway to do this

First, WITHOUT USING ANY 3RD PARTY APPS
If someone calls from a blocked/restricted number, is there any function in the Titan that would allow me to set it to not ring (or to only vibrate, or have a special ringer for only restricted calls)? I tried making a contact called restricted, but that didnt work.
Second, if the above is not possible, what are some 3rd party apps that I might try? I never pick up blocked calls, and I dont even want to hear it ring.
It's not exactly a 3rd party application, more like a service; check out www.youmail.com . If somebody with a blocked number calls me, it says "the number you are calling does not take calss from unidentified callers, please hang up and reveal your number."
rajuabju said:
First, WITHOUT USING ANY 3RD PARTY APPS
If someone calls from a blocked/restricted number, is there any function in the Titan that would allow me to set it to not ring (or to only vibrate, or have a special ringer for only restricted calls)? I tried making a contact called restricted, but that didnt work.
Second, if the above is not possible, what are some 3rd party apps that I might try? I never pick up blocked calls, and I dont even want to hear it ring.
Click to expand...
Click to collapse
Ummm.... There has to be a million. Ok not that many but seriously There are even some that are developed on XDA! I could find that one though ;c(
Here is one that is pretty popular. Im sure others will chime in with there favorites too.
http://www.wm6software.net/communication/call_firewall.html
I could swear I had done this in the past.... But I cant figure it out now.
You can try Ringo... it might do the trick...
http://ringomo.com/windows.php
If you dont want to hear it ring... I recommend SPB Phone Suite...
It has a blacklist feature to ignore calls.. ignore and never ring.
Also it has a great today plugin for showing your vmail, unread messages.. etc (I recommend turning off the big buttons though.. the default look is ugly IMHO)
And my favorite feature, you can set the phone to vibrate, or silent for a period of time (5 mins, 15mins, 30 mins.. etc) This is a life saver since I often need to silence my phone for meetings, and then a few hours later I realize... I have 20 missed calls because I never set it back.
### Edit ###
I just set SPB Phone suite to blacklist "Private" calls.
I then blocked caller ID and called from my home phone... Nothing.. no ring, no flash, the phone ignored it.
It did ring on the callers end the normal number of rings before going to vmail... I.E. it didn't go right to vmail like when you hit ignore.
Superb. SPB Phone Suite does exactly what I want with regards to calls from blocked numbers.
Thanks!
kareem9nba said:
It's not exactly a 3rd party application, more like a service; check out www.youmail.com . If somebody with a blocked number calls me, it says "the number you are calling does not take calss from unidentified callers, please hang up and reveal your number."
Click to expand...
Click to collapse
This site is very slick. Thank you for sharing it.
To test ignoring calls I added my desk phone number to the block list. I called it up, my phone woke up, but never rang and didn't give a notice of a missed call. My desk phone was greeted with the message I left it on youmail.com which happened to be the default smart greeting. Very very cool to have this feature without installing a thing on my phone.

Call blocking application malfunctions

I've been using Extreme Call Blocker for a while now, and it has never let me down until I switched over from the Evo to the Thunderbolt. The dev for this program said it could be the customized rom I'm on. I've tried several different roms and they all give me the same issue.
When an inbound call comes in it will hang up on the caller even though they are not in the block list. What's strange is when they call back a second time, they can usually get past the blocking program. I'd really like to have my call blocking program back. It's nice to be able to block calls by area code ie. 800,866, 877,888... I've seen a couple roms that have this function built into it but it's limited to just contacts within your address book, not to mention the lack of exporting the blocked numbers to the sd card.
Can anyone provide me a call blocking program that is working with the Thunderbolt? Thanks.
You need a better app, with more better stuff. Use Root Call Blocker - its not for the faint of heart but it works real good.
Have u try Mr. Number? It's free from marketplace.
ftgg99 said:
You need a better app, with more better stuff. Use Root Call Blocker - its not for the faint of heart but it works real good.
Click to expand...
Click to collapse
Do you use it and does it work in blocking calls and SMS BEFORE ringing the phone?
Most call blocker just do hang up, so the phone still rings at least once.
I'm happy to report root call blocker has been working flawlessly.thanks

Unlock Screen Programmatically

[Post Deleted]
glensantacruz said:
Hi Guys,
I've ported one of my apps: eNotify to the Ornate TrueSmart:
https://play.google.com/store/apps/details?id=com.hermes.enotifylite
A couple of users have written to request that eNotify turn on the screen when a new email arrives. So that works fine. However, they would also like the screen to be unlocked so that they don't need swipe to dismiss the clock-screen to see the notification.
We have a similar option that works on most Android devices: Settings / "Dismiss Screen Lock"
In code:
Deprecated Way:
KeyguardManager keyguardManager = (KeyguardManager) context.getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(context.KEYGUARD_SERVICE);
lock.disableKeyguard();
Current Way:
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);
BUT it doesn't work on the Ornate TruSmart which leads me to believe this isn't actually a lock screen, but something else. Is there a way to programmatically dismiss this screen?
Best Regards,
Glen
Click to expand...
Click to collapse
I don't use screen lock on my TS, and your app works fine for me, awaking the screen and presenting the popup notification. One question though: When in silent mode, the vibrate feels like just one small bump, and is barely noticed. Any way to increase the vibrate, or set a pattern? Thanks.
[Post Deleted]
glensantacruz said:
Okay. Thanks for the info. I'm still attempting to track it down. Apparently, removing the lock works on some ROMS, but not others.
You can set the vibration like:
Alerts Tab (!) -> Default Profile -> Default Alert -> Bell Chime -> Vibration
There are baked in vibrations such as:
short, medium, long
But you can also hold your finger down to record one of a custom length.
Please feel free to email me at the support address if you need anything. I'd also welcome any reports of TrueSmart specific issues that need investigating.
Thanks,
Glen
Click to expand...
Click to collapse
That worked, thanks. So far so good with my TS...
@glensantacruz, eNotifyLite did not function on my device at all. Sadly once I installed the app, google search started to crash constantly. this made my TrueSmart unusable. Once I uninstalled everything worked once again.
I had high hopes for this.
Suggestion. in the setup separate SMS and email configuration. I am not interested in email in my tiny watch screen. I only really want sms, hangouts, Phone calls and basic glance-able alerts to wake my screen. On my phone I might try your app for email.. I looks very interesting and full of features.
I am a bit confused. In order to receive these notifications the ts must be connect through BT to my phone? If that is true how are u getting past the issues with BT connection with a phone
rhineymac said:
I am a bit confused. In order to receive these notifications the ts must be connect through BT to my phone? If that is true how are u getting past the issues with BT connection with a phone
Click to expand...
Click to collapse
This is not a simple situation but I will attempt to explain my solution:
For SMS
first I have a full service SIM and account for my TS on ATT
next use google voice for my primary number, this involves installing the GV app and configuring it, then getting the GV number socialized..
next I force force sms responce on my phone and my TS to use the GV # with an Xposed plugin called "XVoice+".
For EMAIL / Internet based:
first I have a full service SIM and account for my TS on ATT that is part of a 15gb shared family plan.
The final result is I receive all SMS on both devices. A couple Caveats, GV does not support the short message format so no twitter alerts. depending on the sms source, some messages are more readable on the TS then others.
Unfortunately for me I'm in Canada and lacking Google voice. Thanks for the explanation tho. Omate is doing a ota in a few more weeks fixing the BT issue. I think I will hold off and wait and see how well it works. I've spoken with Le pen and he tells me that the new fix is working very well.

Call blocking with HTC One M8 ?

I am coming from the LG G2. I love the build quality of the M8. So far, my only ***** is the ability, or lack thereof, to block phone calls.
On the G2, if I went to Settings>Call, there was a call reject setting there. It had a check box to block unavailable numbers, and I could add any number I wanted. I also could use what I called a wildcard to block calls.
For example, I could add 1-800. Then there was an option under that to choose beginning, end, etc.
I could just enter the 1-800 and then choose beginning. So all calls beginning with 1-800 would be blocked. Just add 1-800, 1-877, 1-866, etc and get all the stupid telemarketers who "somehow" got my number to be blocked.
Is the functionality missing on the HTC? I had thought that this was a function of KitKat Android.
Would be nice to have back.
lostangelintx said:
I am coming from the LG G2. I love the build quality of the M8. So far, my only ***** is the ability, or lack thereof, to block phone calls.
On the G2, if I went to Settings>Call, there was a call reject setting there. It had a check box to block unavailable numbers, and I could add any number I wanted. I also could use what I called a wildcard to block calls.
For example, I could add 1-800. Then there was an option under that to choose beginning, end, etc.
I could just enter the 1-800 and then choose beginning. So all calls beginning with 1-800 would be blocked. Just add 1-800, 1-877, 1-866, etc and get all the stupid telemarketers who "somehow" got my number to be blocked.
Is the functionality missing on the HTC? I had thought that this was a function of KitKat Android.
Would be nice to have back.
Click to expand...
Click to collapse
I have yet to receive my M8, but in the past i've tested out about 20 call blocking apps and found extreme call blocker to be the best one as it blocks the call BEFORE it even hits the device. Also it has options out the wazoo. I know we're not supposed to talk about paid apps here but i've spent a long time testing all those different apps out and if it's not baked into the M8, it'll save you lots of time testing. I'm in no way shape or form affiliated with extreme call blocker, just a long time, satisfied user
brianray14 said:
I have yet to receive my M8, but in the past i've tested out about 20 call blocking apps and found extreme call blocker to be the best one as it blocks the call BEFORE it even hits the device. Also it has options out the wazoo. I know we're not supposed to talk about paid apps here but i've spent a long time testing all those different apps out and if it's not baked into the M8, it'll save you lots of time testing. I'm in no way shape or form affiliated with extreme call blocker, just a long time, satisfied user
Click to expand...
Click to collapse
Might actually be a feature when you log into your AT&T account online.
brianray14 said:
I have yet to receive my M8, but in the past i've tested out about 20 call blocking apps and found extreme call blocker to be the best one as it blocks the call BEFORE it even hits the device. Also it has options out the wazoo. I know we're not supposed to talk about paid apps here but i've spent a long time testing all those different apps out and if it's not baked into the M8, it'll save you lots of time testing. I'm in no way shape or form affiliated with extreme call blocker, just a long time, satisfied user
Click to expand...
Click to collapse
Doesn't actually happen before it hits the device, cause if it did there would be no way for call blocker to interact with said incoming call. There is a delay from when call hits device, and actually rings. This is where it intercepts the call. I use Root Call Blocker Pro. Many options also. I have it set to kill the call immediately. It can be setup to send it directlyto voice mail. Let it ring once, kill ect. Also will log, and block texts same way.
canecbr600 said:
Doesn't actually happen before it hits the device, cause if it did there would be know way for call blocker to interact with said incoming call. There is a delay from when call hits device, and actually rings. This is where it intercepts the call. I use Root Call Blocker Pro. Many options also. I have it set to kill the call immediately. It can be setup to send it directlyto voice mail. Let it ring once, kill ect. Also will log, and block texts same way.
Click to expand...
Click to collapse
This is true but my phone never rings. It'll actually pick up for a sec and immediately disconnect without using a special ring tone designed to silence first ring. Not quite sure how root call blocker pro works as it may have come out after I discovered extreme call blocker. It also has the same features in that you can block calls and texts alike. Set it to go straight to vm, hang up no voicemail. I'll have to test root call blocker out to see what the similarities and differences are
Sent from my HTC One_M8 using Tapatalk
brianray14 said:
This is true but my phone never rings. It'll actually pick up for a sec and immediately disconnect without using a special ring tone designed to silence first ring. Not quite sure how root call blocker pro works as it may have come out after I discovered extreme call blocker. It also has the same features in that you can block calls and texts alike. Set it to go straight to vm, hang up no voicemail. I'll have to test root call blocker out to see what the similarities and differences are
Sent from my HTC One_M8 using Tapatalk
Click to expand...
Click to collapse
Exactly. Mine never rings either. Runs as a service, that's why it needs root. My screen never lights up, or anything. Nothing to let u know there was even a call except the log. It kills the call the milisecond it hits the phone, so it never hits the dialer/ringer whatever u wanna call it...
canecbr600 said:
Exactly. Mine never rings either. Runs as a service, that's why it needs root. My screen never lights up, or anything. Nothing to let u know there was even a call except the log. It kills the call the milisecond it hits the phone, so it never hits the dialer/ringer whatever u wanna call it...
Click to expand...
Click to collapse
That's awesome! I may just make the switch. Thanks for the heads up
Edit: it is worth noting for future readers that extreme call blocker doesn't require root. Just throwing that out there
Sent from my HTC One_M8 using Tapatalk

Amazfit GTR2- new user, binding to multiple phones

Hello.
I just bought this watch recently, never used a smartwatch before.
Very happy with it, the battery life is amazing, it's been five days of average use (I don't use health monitoring) and it's only at 15% battery.
One major issue I have, which I didn't consider and didn't know, is it not possible to switch phones and have the watch just sync up with the app on that phone?
I was hoping I will be able to switch from my private phone to a company phone as needed, but each time you have to unpair from the first phone and pair to another, and the watch performs factory reset each time.
Is this how all smart watches behave?
Is there a way to get arround that?
It's a shame that switching phones is such a procedure.
Another question, often when I recieve calls, it doesn't always show the contact Name, only the number in the first notification. And then if during the call I scroll down the notifications, it will show a second one with the actual name of the contact, I basically get two notifications when I recieve a call, when I look at my watch it just shows a number calling.
When recieving messages and email, it works fine, it shows the name of the contact, but not when recieving calls.
I have all app permissions allowed and enabled.
Is there a custom rom that can improve these features and enables some modifications?
Thank you.

Categories

Resources