Reputation: 580
I'm using OSMDROID libraries for the offline map. I added these libraries to the Project:
"osmdroid-android-3.0.10.jar"
,"osmdroid-android-3.0.10-javadoc.jar"
and "slf4j-android-1.5.8.jar"
I have downloaded the requirements map and now, what should I do to this map? I'm trying to run the application but errors happen.
Upvotes: 0
Views: 874
Reputation: 383
Simply adding the libraries files to your project won't work. You have to build the path also and then configure the build path and add source and javadoc location to your added files.
Configure your build path for osmdroid-android-3.0.10.jar. Please follow the steps given here:
Similarly Select Javadoc Location and click on Edit button. In the pop-up screen select Javadoc in Archive and then select Workspace file. Now browse the Archive path where your javadoc file is located. Finally browse the Path within archive, select the file there and click ok. You are done with adding the library files properly.
Upvotes: 1
Reputation: 5077
Possibly you might have not added you library to your project correctly. I recommend you to follow this article: http://www.haakseth.com/?p=30
Upvotes: 0