pravin21android
pravin21android

Reputation: 46

problems in lucene android

I'm new to android and Lucene. I want to know whether I can use lucene for search in android list view. I have tried importing the package 2.3.2 and also used the jar files in library. However, there is an error in SearchFiles.java error is : The type java.rmi.Remote cannot be resolved. It is indirectly referenced from .class files.

-Ketki

Upvotes: 0

Views: 526

Answers (1)

Gili Nachum
Gili Nachum

Reputation: 5578

A user have listed the steps to remove Lucene's RMI dependency:

I just had to do two little modifications to the Lucene souce code: 1. Delete "extends java.rmi.Remote" from the Class "org.apache.lucene.search.Searchable" 2. Delete class "org.apache.lucene.search.RemoteSearchable"

Upvotes: 1

Related Questions