-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Enhanced Stability and Addressed Build Issues - **Stability Configuration**: Added `com.android.billingclient.api.Purchase` and `com.android.billingclient.api.ProductDetails` to stability configuration. - **NowPlaying**: Removed `startForegroundService` from `NowPlaying` in favour of `startService`. - **Widget UI**: Added a new rounded corner drawable `rect_rounded_cornors_12dp.xml` for improved widget UI. - **Dependencies**: Updated Koin Compose to version `4.0.2`. - **Universal Widget**: Implemented backward compatibility for rounded corners in widgets using a drawable background. - **SystemFacade**: Changed `purchase` function to be non-inline. Added a check for session id to prevent duplicate sessions. - **App Insights**: Updated selected tab to `Firebase Crashlytics`. Added `FATAL` to failure types. - **Build**: Updated version code to 183 and version name to "3.3.0-rc01". - **Playback**: If session is not added, add the session. - **Playback**: send broadcast when audio session id is updated.
- Loading branch information
1 parent
dcdf39c
commit 073cab1
Showing
10 changed files
with
81 additions
and
29 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
widget/src/main/res/drawable/rect_rounded_cornors_12dp.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
|
||
<!-- <solid android:color="#00FF00" /> --><!-- Background color --> | ||
|
||
<corners android:radius="12dp" /> <!-- Rounded corners --> | ||
|
||
<!--<stroke | ||
android:width="2dp" | ||
android:color="#FF0000" />--> <!-- Border color and width --> | ||
|
||
<!-- <padding | ||
android:left="5dp" | ||
android:top="5dp" | ||
android:right="5dp" | ||
android:bottom="5dp" /> --> | ||
</shape> |