Android spatial data not updating

Application ID F1F625BB-945E-413F-BB88-C765A106E4D8

                DataQueryBuilder queryBuilder = DataQueryBuilder.create();
                queryBuilder.setWhereClause("name = '" + name +"'");

                Backendless.Data.of(Family.class).find(queryBuilder, new AsyncCallback<List<Family>>() {
                    @Override
                    public void handleResponse(List<Family> response) {
                        person = response.get(0);
                        String location_res = latitude + " " + longitude ;
                        tvLocation.setText(location_res);

                        person.setLocation(new Point().setLatitude(latitude).setLongitude(longitude));

                        Backendless.Data.of(Family.class).save(person, new AsyncCallback<Family>() {
                            @Override
                            public void handleResponse(Family response) {
                                Toast.makeText(MapsActivity.this, "Saved", Toast.LENGTH_SHORT).show();
                            }

                            @Override
                            public void handleFault(BackendlessFault fault) {
                                Toast.makeText(MapsActivity.this, "Not Saved", Toast.LENGTH_SHORT).show();
                            }
                        });
                    }

                    @Override
                    public void handleFault(BackendlessFault fault) {
                        Toast.makeText(MapsActivity.this, fault.getMessage(), Toast.LENGTH_SHORT).show();
                    }
                });

cant update my table but i can get the location from table.

Hi @Jepaul_Badillos

The old Geolocation Service has been deprecated:

We suggest you to take a look at new spatial data types:
https://backendless.com/docs/android/data_spatial_overview.html

Best Regards,
Maksym

I am already using the spatial data types and followed the instructions stated in the documentation yet still cant update.

Hello @Jepaul_Badillos

I could not find the application for your ID. WhichBackendless Version are you using (3.x/5.x/6.x, Online/Managed/Pro )?

My bad its the android api key.
here’s the Application ID E24E951E-3CD5-F5F9-FFBB-01719FFE2600
Im using 6.3.0.

Hello @Jepaul_Badillos

Thank you for reporting this issue.
I have reproduced the issue and created an internal ticket (BKNDLSS-24333).

Hope this issue will be resolved quickly.

Hello @Jepaul_Badillos

Are you encountering the problem now? Using your code I was successfully able to update the location in my table. If the problem is still present, can we use your table to check?

Regards,
Inna