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

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

package org.robolectric.shadows;

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

import android.net.wifi.aware.PeerHandle;
import org.robolectric.annotation.Implements;
import org.robolectric.util.ReflectionHelpers;

@Implements(value = PeerHandle.class, minSdk = O)
public class ShadowPeerHandle {

  public static PeerHandle newInstance() {
    return ReflectionHelpers.callConstructor(PeerHandle.class);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy