• Is there any way to stop Google notifications at turn on?

    From Chris Green@21:1/5 to All on Fri Jul 14 09:56:47 2023
    Whenever I 'open' my phone I get the same old notifications that I
    don't want to know about:-

    Google Play Services
    Your data isn't backed up.....

    Nfc Service
    NFC
    Touch to view setting details

    Is there any way to prevent these appearing every time I turn on?

    --
    Chris Green
    ·

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Falafel Balls@21:1/5 to Chris Green on Fri Jul 14 20:00:19 2023
    Chris Green <cl@isbd.net> wrote

    Whenever I 'open' my phone I get the same old notifications that I
    don't want to know about:-

    Google Play Services
    Your data isn't backed up.....

    Nfc Service
    NFC
    Touch to view setting details

    Is there any way to prevent these appearing every time I turn on?

    The simplest answer is "yes, of course there is", as I don't ever get them simply because I have NFC turned off and Google Play Services disabled.

    But that's not what you wanted to hear.

    While I strongly suspect you can turn ANY NOTIFICATION off by messing with
    your notification settings, what happens when you "touch" to view settings?

    Is there an option when you touch there that can make them go away?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Andy Burns@21:1/5 to Chris Green on Fri Jul 14 19:01:28 2023
    On 14/07/2023 09:56, Chris Green wrote:

    Whenever I 'open' my phone I get the same old notifications that I
    don't want to know about:-

    Google Play Services
    Your data isn't backed up.....

    Nfc Service
    NFC
    Touch to view setting details

    Is there any way to prevent these appearing every time I turn on?

    Under Settings > Apps > WhicheverApp > Notifications

    You should be able to disable one or more types of notification

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Green@21:1/5 to Falafel Balls on Fri Jul 14 20:51:32 2023
    Falafel Balls <YoussefGamalNOSPAM@etisalat.eg> wrote:
    Chris Green <cl@isbd.net> wrote

    Whenever I 'open' my phone I get the same old notifications that I
    don't want to know about:-

    Google Play Services
    Your data isn't backed up.....

    Nfc Service
    NFC
    Touch to view setting details

    Is there any way to prevent these appearing every time I turn on?

    The simplest answer is "yes, of course there is", as I don't ever get them simply because I have NFC turned off and Google Play Services disabled.

    I certainly want to disable Google Play Services, how do I do that?

    But that's not what you wanted to hear.

    Yes it is! :-)


    While I strongly suspect you can turn ANY NOTIFICATION off by messing with your notification settings, what happens when you "touch" to view settings?

    When I touch what?

    Is there an option when you touch there that can make them go away?

    When I touch the NFC notification is says "These notifications can't
    be modified".

    --
    Chris Green
    ·

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Green@21:1/5 to Andy Burns on Fri Jul 14 20:53:40 2023
    Andy Burns <usenet@andyburns.uk> wrote:
    On 14/07/2023 09:56, Chris Green wrote:

    Whenever I 'open' my phone I get the same old notifications that I
    don't want to know about:-

    Google Play Services
    Your data isn't backed up.....

    Nfc Service
    NFC
    Touch to view setting details

    Is there any way to prevent these appearing every time I turn on?

    Under Settings > Apps > WhicheverApp > Notifications

    You should be able to disable one or more types of notification

    Ah, yes, thank you.

    --
    Chris Green
    ·

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Falafel Balls@21:1/5 to Chris Green on Sat Jul 15 00:38:30 2023
    On 14/7/2023, Chris Green wrote:

    The simplest answer is "yes, of course there is", as I don't ever get them >> simply because I have NFC turned off and Google Play Services disabled.

    I certainly want to disable Google Play Services, how do I do that?

    Assuming you're not rooted (most people aren't), all you do is find it,
    force stop it, and then force disable it from the Android settings.

    I do it from my app manager but you can do it from adb also if you like.
    The app manager finds everything even if the app drawer doesn't show it.

    So does adb show everything that is on the phone even if you can't see it.

    Find it.
    adb shell pm list packages | findstr com.google.android.gms

    Stop it.
    adb shell am force-stop com.google.android.gms

    Disable it.
    adb shell pm disable-user --user 0 com.google.android.gms

    Remove it.
    adb shell pm uninstall --user 0 com.google.android.gms

    All that works with or without a PC and with or without root.

    This is covered many times in this newsgroup, so just look it up if you
    need more data as there's no sense repeating it a thousand more times. http://groups.google.com/g/comp.mobile.android (search from there)

    Also, since everyone disables Google Play Services, it's all over the net. https://www.google.com/search?q=disable+google+play+services

    Here's just the first hit but there are plenty of other similar hits. https://www.imobie.com/support/uninstall-google-play-services.htm

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)