Skip to content

Commit

Permalink
downgrade androidx fragments to 1.4.1 to workaround search view issue #…
Browse files Browse the repository at this point in the history
  • Loading branch information
sdex committed Nov 26, 2022
1 parent 495e1e1 commit 77d4573
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 5.2.1 (26 Nov 2022)
- Fix losing search state after dismissing the bottom dialog menu

## 5.2.0 (14 Nov 2022)
- Load activities of disabled apps

Expand Down
9 changes: 6 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.activitymanager"
minSdk 21
targetSdk 33
versionCode 520
versionName "5.2.0"
versionCode 521
versionName "5.2.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -85,6 +85,7 @@ dependencies {
implementation "androidx.browser:browser:1.4.0"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.core:core-ktx:1.9.0"
implementation "androidx.fragment:fragment:1.4.1"
implementation "androidx.multidex:multidex:2.0.1"
implementation "androidx.preference:preference-ktx:1.2.0"
implementation "androidx.recyclerview:recyclerview:1.2.1"
Expand All @@ -99,7 +100,9 @@ dependencies {
implementation "com.github.bumptech.glide:glide:$glide_version"
kapt "com.github.bumptech.glide:compiler:$glide_version"
implementation "com.google.android.material:material:1.7.0"
implementation "com.google.dagger:hilt-android:$hilt_version"
implementation ("com.google.dagger:hilt-android:$hilt_version") {
exclude group: 'androidx.fragment', module: 'fragment'
}
kapt "com.google.dagger:hilt-compiler:$hilt_version"
implementation "com.jakewharton.timber:timber:5.0.1"
implementation "com.maltaisn:icondialog:3.3.0"
Expand Down
2 changes: 1 addition & 1 deletion app/src/prod/play/release-notes/en-US/default.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Load activities of disabled apps
- Fix losing search state after dismissing the bottom dialog menu

0 comments on commit 77d4573

Please sign in to comment.