wtf.emulator.EwJson Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin-core Show documentation
Show all versions of gradle-plugin-core Show documentation
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