All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robolectric.shadows.LauncherAppsDelegate Maven / Gradle / Ivy

The newest version!
package org.robolectric.shadows;

import android.os.UserHandle;
import android.os.UserManager;
import java.util.List;
import org.robolectric.RuntimeEnvironment;

/** Delegate for {@link ILauncherApps}. */
class LauncherAppsDelegate {

  public List getUserProfiles() {
    return RuntimeEnvironment.getApplication()
        .getSystemService(UserManager.class)
        .getUserProfiles();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy