diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8720c3..08e8038e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/app/build.gradle b/app/build.gradle index 6cbe61a4..fdfb4e3a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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" @@ -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" @@ -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" diff --git a/app/src/prod/play/release-notes/en-US/default.txt b/app/src/prod/play/release-notes/en-US/default.txt index feed3323..ae231063 100644 --- a/app/src/prod/play/release-notes/en-US/default.txt +++ b/app/src/prod/play/release-notes/en-US/default.txt @@ -1 +1 @@ -- Load activities of disabled apps +- Fix losing search state after dismissing the bottom dialog menu