-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
does it still work with latest versions? #1
Comments
I've had reports that it does not. Haven't had a chance to look into it. On what devices did you test? |
According to this; since API 26 the TelephonyManager now exposes a endCall() method. Which of course is cleaner then accessing ITelephony methods using reflection that may or may not work depending on phone and Android version. Disclaimer: I don't have AndroidStudio available at this moment to check if it actually works. I will however check later. |
hi all, i am thinking of starting a similar project. but i want a implement that can receive the call automatically. i have found some pages, but still no idea. can some one give me some hint? thanks a lot. |
I guess something along these lines would work.... TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); if (Build.VERSION.SDK_INT >= 28){ Thanks for the great project btw! |
I tried on Android 9, and it requires But I found an interesting API that could be useful ( I am working on a similar app, and thanks for sharing the project! |
this code is not working for android 10 can you share relevant example of android 10 ? |
I'm not actively maintaining this repo. Please feel free to create a PR.
…On Tue, 13 Oct 2020 at 21:21, hirenmotwani ***@***.***> wrote:
this code is not working for android 10 can you share relevant example of
android 10 ?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHUM2HO3IV3JXQ3KQJXTYLSKSSFBANCNFSM4FAH452Q>
.
|
Hello, |
I have tried to update the code and resolve some of these issues. Please take a look at #7 |
It is very nice if it can turn off the call screening service without violating security policies in Android 8.1, 9, 10, 11, 12 and 13+ versions. Thank you, I will evaluate your code. |
does it still work with latest versions?
The text was updated successfully, but these errors were encountered: