Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Commit a6477b8

Browse files
committed
fix removing uninstalled apps from all apps view - wich was accidentally removed
1 parent d094ef3 commit a6477b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LaLauncher/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ android {
55
applicationId 'com.github.postapczuk.lalauncher'
66
minSdkVersion 5
77
targetSdkVersion 26
8-
versionCode 15
9-
versionName '1.8.1'
8+
versionCode 16
9+
versionName '1.8.2'
1010
}
1111
buildTypes {
1212
release {

LaLauncher/src/main/java/com/github/postapczuk/lalauncher/InstalledAppsActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class InstalledAppsActivity extends Activity {
3535
@Override
3636
protected void onResume() {
3737
super.onResume();
38-
if (appNamesPosition.size() != packageNames.size()) {
38+
if (getActivities(getPackageManager()).size() - 1 != packageNames.size()) {
3939
fetchAppList();
4040
}
4141
}

0 commit comments

Comments
 (0)