org.robolectric.shadows.multidex.ShadowAndroidXMultiDex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadows-multidex Show documentation
Show all versions of shadows-multidex Show documentation
An alternative Android testing framework.
package org.robolectric.shadows.multidex;
import android.content.Context;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(className = "androidx.multidex.MultiDex")
@SuppressWarnings("robolectric.internal.IgnoreMissingClass")
public class ShadowAndroidXMultiDex {
@Implementation
protected static void install(Context context) {
// Do nothing since with Robolectric nothing is dexed.
}
}