Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4b89c05 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correctly handle a case when there are no preloaded apps" into nyc-mr1-dev

parents 65889f7e 28ba2898
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -67,10 +67,11 @@ class PreloadAppsInstaller {

    void installApps(int userId) {
        File[] files = preloadsAppsDirectory.listFiles();
        AppInstallCounter counter = new AppInstallCounter(mContext, userId);
        if (ArrayUtils.isEmpty(files)) {
            counter.setExpectedAppsCount(0);
            return;
        }
        AppInstallCounter counter = new AppInstallCounter(mContext, userId);
        int expectedCount = 0;
        for (File file : files) {
            String apkName = file.getName();