Skip to content

Commit

Permalink
Released version 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jan 2, 2020
1 parent 1d2cfed commit 7547762
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
And add a dependency code to your **module**'s `build.gradle` file.
```gradle
dependencies {
implementation "com.github.skydoves:balloon:1.0.7"
implementation "com.github.skydoves:balloon:1.0.8"
}
```

Expand Down Expand Up @@ -274,7 +274,7 @@ button.setOnClickListener {
}
```

### Preference
### Persistence
If you want to show-up the balloon popup only once or a specific number of times, here is how to implement it simply.<br>
```java
.setPreferenceName("MyBalloon") // sets preference name of the Balloon.
Expand Down Expand Up @@ -373,6 +373,8 @@ class ProfileBalloonFactory : Balloon.Factory() {
.setIconForm(value: IconForm)
.setAlpha(@FloatRange(from = 0.0, to = 1.0) value: Float)
.setLayout(@LayoutRes layout: Int)
.setPreferenceName(value: String)
.setShowTime(value: Int)
.setLifecycleOwner(value: LifecycleOwner)
.setBalloonAnimation(value: BalloonAnimation)
.setOnBalloonClickListener(value: OnBalloonClickListener)
Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ext.versions = [
minSdk : 16,
compileSdk : 29,
versionCode : 8,
versionName : '1.0.7',
versionCode : 9,
versionName : '1.0.8',

gradleBuildTool : '3.5.1',
spotlessGradle : '3.26.1',
Expand Down

0 comments on commit 7547762

Please sign in to comment.