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

org.robolectric.shadows.multidex.ShadowAndroidXMultiDex 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;

@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.
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy