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

wtf.emulator.EwJson Maven / Gradle / Ivy

Go to download

With this Gradle plugin you can run your Android instrumentation tests with emulator.wtf

The newest version!
package wtf.emulator;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import wtf.emulator.data.EwTypeAdapterFactory;

public class EwJson {
  // single global Gson instance for all EW stuff
  public static final Gson gson = new GsonBuilder()
      .registerTypeAdapterFactory(EwTypeAdapterFactory.create())
      .setPrettyPrinting()
      .create();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy