0

I need Simple xml parser for my project. I read throu it's site but i couldnt find how should i add it to my project to use it properly.

I programming in android using eclipse.

This is the site of Simple.

Jav_Rock
  • 22,059
  • 20
  • 123
  • 164
Adam Varhegyi
  • 11,307
  • 33
  • 124
  • 222
  • 1
    possible duplicate of [NoClassDefFoundError - Eclipse and Android](http://stackoverflow.com/questions/2247998/noclassdeffounderror-eclipse-and-android) –  Sep 30 '12 at 09:58
  • 1
    Have you looked at http://stackoverflow.com/questions/8070923/how-to-do-a-simple-xml-parser-with-android? – Timofey Sep 30 '12 at 10:03

1 Answers1

1

You have to do the following:

  1. Download jar or zip of the Simple parser here
  2. Copy it into the directory where the libraries of your project is located.
  3. Let Eclipse knowing it by adding the library into the classpath

In order for the jar to be available at runtime, you need to:

  • Put the jar under your assets folder
  • Include this copy of the jar in your build path
  • Go to the export tab on the same popup window
  • Check the box against the newly added jar

last part is from here

Community
  • 1
  • 1
Timofey
  • 2,478
  • 3
  • 37
  • 53