Skip to content

Commit

Permalink
Merge branch 'dev' into 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
faruktoptas committed Mar 15, 2017
2 parents dc1a75a + bca7a49 commit 0982b91
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ An easy-to-use customizable show case view with circular reveal animation.
- Custom view inflation
- Custom enter/exit animations

![!gif](https://github.com/faruktoptas/FancyShowCaseView/blob/master/art/fancyshowcase.gif?raw=true)
![!gif](https://cloud.githubusercontent.com/assets/8283200/23941893/8fb92934-097b-11e7-9626-2c4b2d15b8ca.gif)

# Gradle Dependency

Expand All @@ -32,15 +32,15 @@ dependencies {
```

## Sample Usage
```
```java
new FancyShowCaseView.Builder(this)
.focusOn(view)
.title("Focus on View")
.build()
.show();
```
## Customize
```
```java
new FancyShowCaseView.Builder(this)
.focusOn(view)
.focusCircleRadiusFactor(1.5)
Expand All @@ -54,7 +54,7 @@ new FancyShowCaseView.Builder(this)
.show();
```
## Inflating Custom View
```
```java
new FancyShowCaseView.Builder(this)
.customView(R.layout.layout_my_custom_view, null)
.build()
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 10
targetSdkVersion 25
versionCode 1
versionName "0.0.1"
versionName "0.0.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
Binary file removed art/fancyshowcase.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion 10
targetSdkVersion 25
versionCode 1
versionName "0.0.1"
versionName "0.0.3"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit 0982b91

Please sign in to comment.