Skip to content
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.

Commit

Permalink
update version to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amlcurran committed Sep 2, 2013
1 parent 5a45e20 commit b3192ff
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 10 deletions.
17 changes: 16 additions & 1 deletion library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.espiandev</groupId>
<artifactId>showcaseview-parent</artifactId>
<version>3.2.0</version>
<version>3.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -34,6 +34,21 @@
<artifactId>annotations</artifactId>
<version>4.1.1.4</version>
</dependency>

<!-- Make sure this is below the android dependencies -->
<dependency>
<groupId>org.robolectric</groupId>
<artifactId>robolectric</artifactId>
<version>2.1.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,11 @@ public class ShowcaseView extends RelativeLayout implements View.OnClickListener
private Bitmap mBleachedCling;
private int mShowcaseColor;

public ShowcaseView(Context context) {
protected ShowcaseView(Context context) {
this(context, null, R.styleable.CustomTheme_showcaseViewStyle);
}

public ShowcaseView(Context context, AttributeSet attrs) {
this(context, attrs, R.styleable.CustomTheme_showcaseViewStyle);
}

public ShowcaseView(Context context, AttributeSet attrs, int defStyle) {
protected ShowcaseView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);

// Get the attributes for the ShowcaseView
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.github.espiandev.showcaseview;

import org.junit.Before;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;

@RunWith(RobolectricTestRunner.class)
public class ShowcaseViewTests {

@Before
public void setup() {

}

public void testSetOnShowcaseViewListenerIsSet() {

}

}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>com.github.espiandev</groupId>
<artifactId>showcaseview-parent</artifactId>
<packaging>pom</packaging>
<version>3.2.0</version>
<version>3.5.0</version>

<name>ShowcaseView (parent)</name>
<description>Android library for implementing Holo-style highlighting of important UI areas.</description>
Expand Down
4 changes: 2 additions & 2 deletions sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.espiandev</groupId>
<artifactId>showcaseview-parent</artifactId>
<version>3.2.0</version>
<version>3.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.github.espiandev</groupId>
<artifactId>showcaseview-library</artifactId>
<version>${project.version}</version>
<version>3.5.0</version>
<type>apklib</type>
</dependency>
</dependencies>
Expand Down

0 comments on commit b3192ff

Please sign in to comment.