Correctly handle a case when there are no preloaded apps

Bug: 30415696
Change-Id: Ia1cff342ff7000da3fba580083116441f478491e
This commit is contained in:
Fyodor Kupolov
2016-08-03 13:50:37 -07:00
parent c9682ab5b5
commit 28ba2898ce

View File

@@ -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();