BackendlessCollection not found:

hey i am using backendless 4.0+. when i try to use backendlessCollection. it says “cannot resolve method BackendlessColelction”

and yes i have imported Backendless.BackendlessCollection. here is my code

 String whereClause = "distance( "+latitude+", "+longitude+", coordinates.latitude," +
            " coordinates.longitude ) < mi(8)";
    BackendlessDataQuery dataQuery = new BackendlessDataQuery( whereClause );
    QueryOptions queryOptions = new QueryOptions();
    queryOptions.setRelationsDepth( 1 );
    dataQuery.setQueryOptions( queryOptions );


    BackendlessCollection&lt;Post&gt; p = Backendless.Data.of( Post.class ).find(dataQuery );


    String format = "%s lives at %f, %f tagged as '%s'";


    for( Post friend : p.getData() )
    {
        GeoPoint coordinates = friend.getCoordinates();


        mMap.addMarker(new MarkerOptions().position(new LatLng(coordinates.getLatitude(),coordinates.getLongitude()
        )).title(friend.getResturantName()));
    }
}

Hello Abubakar,

You haven’t read the documentation before migrating your app!
BackendlessCollection is now deprecated and replaced by native Android List.

Good luck with the migration