I am developing a solution using the NRF9160. The device is successfully reporting to my server using a blend of the Location and HTTPS samples. I would like to operate under GNSS only (no multicell) but I am unable to disable NRF Cloud or JWT by setting JWT and Cloud configs to No in the .prj file. Is it possible to disable those services but maintain the Location library? When the application runs, I still get a warning about inability to connect to AGPS even though I never request AGPS.
I am setting my location config to GNSS only with this,
enum location_method methods[] = {LOCATION_METHOD_GNSS};
Do I need to turn off AGPS anywhere else? When I test using the GNSS sample I acquire a fix faster than when I use the Location sample with GNSS only, so I think somehow AGPS is still on and timing out.
Thanks!