Skip to content

Commit

Permalink
Update for v3.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsamurmu committed Dec 11, 2022
1 parent b93b73b commit 043e6b3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.ext.CompileSdk

namespace 'com.candybar.sample'

defaultConfig {
applicationId 'com.candybar.sample'
minSdkVersion rootProject.ext.MinSdk
Expand Down Expand Up @@ -57,7 +59,7 @@ dependencies {
* If you've missed some versions you've to also follow update guide for those versions
*/

implementation 'com.github.zixpo:candybar:3.15.0'
implementation 'com.github.zixpo:candybar:3.16.0'

// TODO: Remove `//` below to enable OneSignal
//implementation 'com.onesignal:OneSignal:[4.0.0, 4.99.99]'
Expand Down
10 changes: 6 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto"
package="com.candybar.sample">
android:installLocation="auto">

<!-- If you are not using donation and premium request, you need to remove BILLING permission -->
<uses-permission android:name="com.android.vending.BILLING" />
Expand Down Expand Up @@ -199,15 +198,18 @@
android:value="@color/muzei_color" />
</provider>

<receiver
<!--
Uncomment the following code to enable Clock Widget.
-->
<!--<receiver
android:name=".services.ClockWidget"
android:label="Clock Widget"
android:exported="false">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/analog_clock" />
</receiver>
</receiver>-->

<!--
Uncomment the following code to enable Kustom.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.1'
}
}

Expand All @@ -18,7 +18,7 @@ allprojects {
}

rootProject.ext {
MinSdk = 16
MinSdk = 21
TargetSdk = 33
CompileSdk = 33
}
Expand Down

0 comments on commit 043e6b3

Please sign in to comment.