I am building simple Android app where I am getting nearest locations using Goolge Places API. For this I used this. But when I am calling:
JsonHttpParser parser = new JsonHttpParser(new JacksonFactory());
it is saying The type JsonHttpParser is deprecated by placing a line-through on this line in Eclipse, but app is still working.
My Question is - Is it good using the libraries which are deprecated in application. Will this raise any problem in the future ?
EDIT:
I used JsonHttpParser for creating HttpRequestFactory like:
public static HttpRequestFactory createRequestFactory(final HttpTransport transport) {
return transport.createRequestFactory(new HttpRequestInitializer() {
public void initialize(HttpRequest request) {
GoogleHeaders headers = new GoogleHeaders();
headers.setApplicationName("Places-Test");
request.setHeaders(headers);
// here it is saying deprecated
JsonHttpParser parser = new JsonHttpParser(new JacksonFactory());
request.addParser(parser);
}
});
}
Is there any alternative to create HttpRequestFactory?
