Skip to content

Commit

Permalink
Update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsamurmu committed Jul 2, 2024
1 parent 15610bf commit c2c1e64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

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

# v3.20.1
- Improve notification support

# v3.20.0
- Updated AGP and dependencies
- Updated Play Billing Library to v7
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {
rootProject.ext {
def major = 3
def minor = 20
def patch = 0
def patch = 1

VersionCode = major * 10000 + minor * 100 + patch
VersionName = "$major.$minor.$patch"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,6 @@ public void onBackPressed() {
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
@NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
LogUtil.e("Request Code: " + requestCode);
LogUtil.e("Storage Code: " + PermissionCode.STORAGE);
if (requestCode == PermissionCode.STORAGE) {
if (grantResults.length > 0 &&
grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Expand Down

0 comments on commit c2c1e64

Please sign in to comment.