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

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

The newest version!
package org.robolectric.shadows;

import static android.os.Build.VERSION_CODES.M;

import com.android.internal.policy.PhoneWindow;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;

/** Shadow for RotationWatcher for API 23+ */
@Implements(
    className = "com.android.internal.policy.PhoneWindow$RotationWatcher",
    isInAndroidSdk = false,
    minSdk = M)
public class ShadowRotationWatcher {

  @Implementation
  protected void addWindow(PhoneWindow phoneWindow) {
    // ignore
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy