Skip to content

Commit

Permalink
upgrade dependency, version, readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TorryDo committed Jan 13, 2024
1 parent 69a291b commit dbd83b1
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
15 changes: 14 additions & 1 deletion .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions FloatingBubbleView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ plugins {

android {

compileSdk 33
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 33
targetSdk 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# 🍀Floating Bubble View
An Android library that adds floating bubbles to your home screen 🎨, supports both XML and 💘 Jetpack Compose
An Android library that creates floating bubbles on top of the screen 🎨, supports both XML and 💘 Jetpack Compose

<br>

<div align="center">

Find this library useful? Don't forget to show some love by giving a `Star⭐` 🥰
<h6> Find this library useful? 🥰 Don't forget to show some love by giving a &nbsp; -Star⭐- </h6>

| Bubble | Custom |
| :-: | :-: |
Expand Down Expand Up @@ -393,6 +393,7 @@ class MyServiceKt : ExpandableBubbleService() {

```java
public class MyService extends ExpandableBubbleService {
...
@Override
public void startNotificationForeground() {
startForeground(...);
Expand All @@ -411,6 +412,8 @@ public class MyService extends ExpandableBubbleService {

```kotlin
class MyService : FloatingBubbleService() {
...
// optional, of course
override fun startNotificationForeground() {
startForeground(...)

Expand All @@ -431,7 +434,7 @@ Starting in Android 13 (API level 33), notifications are only visible if the "PO

> The service will run normally even if the notification is not visible. 🍀
> P/s: You still need to initialize the notification before showing any view.
> You still need to initialize the notification before showing any view.
</details>

Expand Down Expand Up @@ -470,9 +473,10 @@ Starting in Android 13 (API level 33), notifications are only visible if the "PO
Contributions are welcome! 🙌

- If you come across a bug or have an idea for a new feature, please let us know by creating an [Issue](https://github.com/TorryDo/Floating-Bubble-View/issues) 🐛💡
- If you're interested in taking on an [open issue](https://github.com/TorryDo/Floating-Bubble-View/issues), please comment on it so others are aware 😊
- If you've already fixed a bug or implemented a feature, feel free to submit a [Pull request](https://github.com/TorryDo/Floating-Bubble-View/pulls) 🚀
- Having questions, ideas, or feedback? Don't worry, I gotchu. Simply open a [Discussion](https://github.com/TorryDo/Floating-Bubble-View/discussions) 🔊
- Find this project useful? Don't forget to show some love by giving a star ⭐
- Find this project useful? 🥰 Don't forget to show some love by giving a star ⭐

Thank you! 💖

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.3
#prev: 0.6.2
VERSION_NAME=0.6.4
#prev: 0.6.3

POM_NAME=FloatingBubbleView
POM_PACKAGING=aar
Expand Down

0 comments on commit dbd83b1

Please sign in to comment.