Correctly handle a case when there are no preloaded apps
Bug: 30415696 Change-Id: Ia1cff342ff7000da3fba580083116441f478491e
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user