Questions tagged [google-settings]

11 questions
25
votes
5 answers

How to reset Google Advertising ID in Android Programmatically?

I'm trying to reset google Advertising ID programmatically for automation purposes. I'm able to fetch the Advertising ID and isLimitAdTrackingEnabled. But I want to reset the ID…
Siva
  • 1,078
  • 4
  • 18
  • 36
4
votes
2 answers

How to open and check whether Play Protect is enabled or disabled

minSdkVersion 18 targetSdkVersion 27 Using below code, I can able to open the Google Settings page. private static final String GOOGLE_SETTINGS_COMPONENT = "com.google.android.gms"; private static final String GOOGLE_SETTINGS_ACTIVITY =…
Gvtha
  • 1,463
  • 1
  • 11
  • 18
2
votes
1 answer

Allow/enable Clipboard Permission Popup using selenium with JavaScript

How to enable/allow clipboard permission popups in automated tests with Selenium web driver and JavaScript? It works as expected when setting is set to 0 and 2 but not when setting is set to 1 Popup is shown as expected in below…
2
votes
1 answer

API to get the working hours data from google calendar settings

Can we get the Working hours data from google calendar settings. I have gone through the APIs of calendar google calendar settings api but didn't get the required data with this. Attaching the image for reference Image FYI
tklanilkumar
  • 73
  • 1
  • 10
2
votes
0 answers

How to access my own Gmail account by bypassing Google Security Checkup

I have developed an automation software for verifying Google oAuth using Gmail account sign(configured my own 4 gmail accounts). It is actually working fine from my machine. While automation runs from a remote machine(ran from jenkins with 3 hrs of…
2
votes
1 answer

How to get Android Google setting programatically?

In android 6.0 (marshmallow), there is Google settings in Android System Settings. For example I want check if `Settings -> Google -> Nearby is on or off. is it possible to get value of Android Google settings programmatically ? If yes then how…
1
vote
0 answers

How do I open 'Google Settings' of an Android device programatically?

I want to access 'Google Settings' in Android programatically, is there any way I can do that using Intent? "com.google.android.gms.location.settings.GOOGLE_LOCATION_SETTINGS" didn't work using Intent.
Arnav
  • 1,404
  • 2
  • 19
  • 38
1
vote
1 answer

Callback to app when Reset Google Advertising ID

An App uses Google Advertising ID. But as read online this tends to be changed based on User event. If user visits Google Settings -> Ads screen and resets the ID than a new ID is been issued. My Question is do other Android App gets a broadcast or…
0
votes
1 answer

How to tell Google that I tried to perform the task?

I want to create a java program that sends mails from my java app. I am using Gmail as the email provider and their servers. My code works there are no errors or bugs, but Google security wont allow me to run it. It blocks the process. Here is what…
0
votes
0 answers

Google Groups Settings API 400 "Invalid Value" error

I have a sync script which is creating new groups and uploading settings, like so: for group in self.groups: try: print("%s@%s" % (group, self.admin_directory.__domain__)) …
Avir94
  • 899
  • 9
  • 19
0
votes
1 answer

How to make sure app does not appear in the list of saved password?

I am working on financial android app, where security is utmost important. Tester has raised a bug on this app as- whenever app is installed and user logs in, android shows the dialog "save password to google?" If user clicks yes, password is saved…