user3531864
user3531864

Reputation: 167

Adding ShowcaseView as library project

How can I add the ShowcaseView project as a library to my project?

I´m using Eclipse [ADT]. I´ve already set the checkbox "is libryry" in properties from the library to checked and added it to my library but the example code

    new ShowcaseView.Builder(this)
    .setTarget(new ActionViewTarget(this, ActionViewTarget.Type.HOME))
    .setContentTitle("ShowcaseView")
    .setContentText("This is highlighting the Home button")
    .hideOnTouchOutside()
    .build();

says "Create class 'ShowcaseView'".

Upvotes: 0

Views: 237

Answers (1)

Abdallah Alaraby
Abdallah Alaraby

Reputation: 2249

  1. Go to ShowcaseView's project properties in Eclipse
  2. Java Build Path
  3. source tab
  4. add folder
  5. select java folder

Upvotes: 1

Related Questions