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

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

The newest version!
package org.robolectric.shadows;

import android.os.HidlSupport;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.versioning.AndroidVersions.V;

/** Activates Hidl support */
@SuppressWarnings("NewApi")
@Implements(value = HidlSupport.class, isInAndroidSdk = false, minSdk = V.SDK_INT)
public class ShadowHidlSupport {

  @Implementation
  protected static boolean isHidlSupported() {
    return true;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy