Package org.robolectric.pluginapi
Interface SdkProvider
-
- All Known Implementing Classes:
DefaultSdkProvider
@ExtensionPoint public interface SdkProvider
A provider of known instances ofSdk
. Implement this interface if you need to provide SDKs in a special way for your environment. This is an extension point for Robolectric; seeorg.robolectric.pluginapi
for details.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Sdk>
getSdks()
Returns the set of SDKs available to run tests against.
-
-
-
Method Detail
-
getSdks
Collection<Sdk> getSdks()
Returns the set of SDKs available to run tests against. It's okay for the implementation to block briefly while building the list; the results will be cached.
-
-