views:

1004

answers:

2

Hi,

I'm trying to build an android app that would do a local search on google.

I know there is a Google Search API for Java, and I am able to use it for a desktop application. However, when I use the same jar file (gsearch.jar) in my android project, Some problems arise.

When I call the .localSearch() method of my gsearch.Client object, a runtime error is occurring. The error message is: "java.lang.VerifyError: gsearch.Client". This message is occurring in the Dalvik Debug Monitor log.

So what is the problem here? Can I not use the search API on the android?

More importantly, how do I do a local search from an android app? Does the android sdk have search APIs inbuilt? I could only find the Maps api, and Map search is not what I'm looking for..

Thanks for the help,

jrh

+2  A: 

Here a solution using a JSON call to google ajax local search without using java gsearch library.

systempuntoout
and how about a "local search" on google? like on local.google.com?
Here Be Wolves
Yea, I found the docs.. but thanks :)
Here Be Wolves
A: 

Thanks a lot.... even i was searching for the api since last two days.... ajax local search is really helpful to me...

Abhishek Akhani
no problem. Just a hint: (1) this should have been posted as a comment on the question. (2) like this? upvote!
Here Be Wolves