Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.shadows;
      2 
      3 import static android.os.Build.VERSION_CODES.N;
      4 
      5 import libcore.util.NativeAllocationRegistry;
      6 import org.robolectric.annotation.Implements;
      7 
      8 @Implements(value = NativeAllocationRegistry.class, callThroughByDefault = false, minSdk = N, isInAndroidSdk = false)
      9 public class ShadowNativeAllocationRegistry {
     10 }
     11