Skip to content

Commit

Permalink
upgrade version name, README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TorryDo committed Sep 21, 2023
1 parent 43fb46f commit 4f88f1f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,18 +361,25 @@ class MyServiceKt : ExpandableBubbleService() {
.expandedCompose {
ExpandedCompose()
}
// handle key code
.onDispatchKeyEvent {
if(it.keyCode == KeyEvent.KEYCODE_BACK){
minimize()
}
null
}
// set start location in dp
.startLocation(0, 0)
// allow expanded bubble can be draggable or not
.draggable(true)
// fade animation by default
.style(null)
//
.fillMaxWidth(true)
// animate to the left/right side when release, trfalseue by default
.enableAnimateToEdge(true)
.dimAmount(0.9f)
// set background dimmer
.dimAmount(0.6f)
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ RELEASE_SIGNING_ENABLED=true

GROUP=io.github.torrydo
POM_ARTIFACT_ID=floating-bubble-view
VERSION_NAME=0.6.2
#prev: 0.6.1
VERSION_NAME=0.6.3
#prev: 0.6.2

POM_NAME=FloatingBubbleView
POM_PACKAGING=aar
Expand Down

0 comments on commit 4f88f1f

Please sign in to comment.