You have to ship the APK with all files in the META-INF folder of Lucene's JAR files (merged together if there are multiple files with same name). Those must be also available in the APK in the sub-folder META-INF. You can use the Maven Shade Plugin to do this (not sure how to use that with apkbuilder).
Uwe ----- Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -----Original Message----- > From: VIGNESH S [mailto:vigneshkln...@gmail.com] > Sent: Tuesday, December 17, 2013 1:55 PM > To: java-user@lucene.apache.org > Subject: Lucene deleteDocuments(Term)not working in android working in > desktop.. > > Hi , > > I tried Lucene 3.6 in both desktop and android and deleteDocuments is > working fine. > > I tried Lucene Version 4.3 code in Desktop and android.In Desktop it is > deleting the index files without any problem. > > In android,I changed the following files to avoid jar problem. > {Codec.java,DocValuesFormat.java,PostingsFormat.java} > > > private final static Lucene42Codec _codec = new Lucene42Codec(); > > public static Codec forName(String name) { > return _codec; > } > > private final static Lucene42DocValuesFormat _format = new > Lucene42DocValuesFormat(); > > public static DocValuesFormat forName(String name) { > return _format; > } > > private final static Lucene41PostingsFormat _format = new > Lucene41PostingsFormat(); > > public static PostingsFormat forName(String name) { > return _format; > } > > > Please Kindly Help. > > > > > > -- > Thanks and Regards > Vignesh Srinivasan --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org