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

org.robolectric.shadows.multidex.ShadowMultiDex Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version
package org.robolectric.shadows.multidex;

import android.content.Context;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;

/** No-op shadow for {@link android.support.multidex.MultiDex}. */
@Implements(className = "android.support.multidex.MultiDex")
@SuppressWarnings("robolectric.internal.IgnoreMissingClass")
public class ShadowMultiDex {

  @Implementation
  protected static void install(Context context) {
    // Do nothing since with Robolectric nothing is dexed.
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy