neowinston
neowinston

Reputation: 7764

How to change Java Build Path for Android in Eclipse?

I'm having a build problem with a specific file that I'm not being able to change the path on my Android project. Here is a picture of the problem:

enter image description here

How do I change this Path: /Users/apple/Downloads/dolphin_player/p/libs shown in the picture?

Upvotes: 0

Views: 830

Answers (4)

Arpit Patel
Arpit Patel

Reputation: 1571

It depends on the which version of java you are using.Just go to library tab and do following.

If you are using the 1.6 version of java the whenever you want to add any third party jar files you have to add it by adding external jar file in the library option.

If you are using the 1.7 version of java then you have to make a folder called libs and put the all the external jar files in this folder. It will automatically add the files to yous build path and add it in "Android Dependencies".

Upvotes: 1

Lucifer
Lucifer

Reputation: 29672

Its very simple, just follow these steps,

  • Right click on your project, select properties,
  • From the dialogbox select "Java Compiler" in left part, see image

enter image description here

Upvotes: 1

P Varga
P Varga

Reputation: 20269

On the libraries tab, remove or edit it.

Upvotes: 1

Roy Hinkley
Roy Hinkley

Reputation: 10641

Change it from the libraries tab. You cannot do it from the order and export tab.

Upvotes: 1

Related Questions