Skip to content

Commit 537ac94

Browse files
sarsamurmuGitGitro
authored andcommitted
Update version and changelog
1 parent 307e2d6 commit 537ac94

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[Donnnno]: https://github.com/Donnnno
44

5+
# v3.20.1
6+
- Improve notification support
7+
58
# v3.20.0
69
- Updated AGP and dependencies
710
- Updated Play Billing Library to v7

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ allprojects {
2020
rootProject.ext {
2121
def major = 3
2222
def minor = 20
23-
def patch = 0
23+
def patch = 1
2424

2525
VersionCode = major * 10000 + minor * 100 + patch
2626
VersionName = "$major.$minor.$patch"

library/src/main/java/candybar/lib/activities/CandyBarMainActivity.java

-2
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,6 @@ public void onBackPressed() {
371371
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
372372
@NonNull int[] grantResults) {
373373
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
374-
LogUtil.e("Request Code: " + requestCode);
375-
LogUtil.e("Storage Code: " + PermissionCode.STORAGE);
376374
if (requestCode == PermissionCode.STORAGE) {
377375
if (grantResults.length > 0 &&
378376
grantResults[0] == PackageManager.PERMISSION_GRANTED) {

0 commit comments

Comments
 (0)