user1807772
user1807772

Reputation:

How to include POI library into an Android project?

How to include the poi library into an android project? When I want to include it in the regular Java project, I would right click on the project, in Eclipse -> Build path -> Add external Archives

How am I supposed to do it in an Android project?

Upvotes: 1

Views: 4136

Answers (2)

Artyom Kiriliyk
Artyom Kiriliyk

Reputation: 2513

You should put jar in libs folder and then Project -> Properies -> Java Buid Path -> Add JARs -> Select jar of your library from libs folder -> OK.

Upvotes: 2

endryha
endryha

Reputation: 7256

You should put jar in libs folder (the same level as res or src folder) and do Eclipse -> Build path -> Add external Archives

Upvotes: 0

Related Questions