Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Crash from Google Play Store #4542

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ ownCloud admins and users.

## Summary

* Bugfix - Crash from Google Play Store: [#4333](https://github.com/owncloud/android/issues/4333)
* Bugfix - Navigation in automatic uploads folder picker: [#4340](https://github.com/owncloud/android/issues/4340)
* Change - Replace auto-uploads with automatic uploads: [#4252](https://github.com/owncloud/android/issues/4252)
* Enhancement - Unit tests for repository classes - Part 2: [#4233](https://github.com/owncloud/android/issues/4233)
Expand All @@ -51,6 +52,15 @@ ownCloud admins and users.

## Details

* Bugfix - Crash from Google Play Store: [#4333](https://github.com/owncloud/android/issues/4333)

The androidx-appcompat version has been upgraded from 1.5.1 to 1.6.1 in order to
fix one crash reported by Play Console which is related to the
FileDataStorageManager constructor

https://github.com/owncloud/android/issues/4333
https://github.com/owncloud/android/pull/4542

* Bugfix - Navigation in automatic uploads folder picker: [#4340](https://github.com/owncloud/android/issues/4340)

The button in the toolbar for going up when choosing an upload path has been
Expand Down
8 changes: 8 additions & 0 deletions changelog/unreleased/4542
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Bugfix: Crash from Google Play Store

The androidx-appcompat version has been upgraded from 1.5.1 to 1.6.1
in order to fix one crash reported by Play Console which is related to
the FileDataStorageManager constructor

https://github.com/owncloud/android/issues/4333
https://github.com/owncloud/android/pull/4542
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
androidGradlePlugin = "8.7.2"
androidxActivity = "1.6.1"
androidxAnnotation = "1.6.0"
androidxAppCompat = "1.5.1"
androidxAppCompat = "1.6.1"
androidxArch = "2.2.0"
androidxBiometric = "1.1.0"
androidxBrowser = "1.5.0"
Expand Down