com.zhugeioanalytics.android.plugin.ZhugeioAnalyticsJSRAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-gradle-plugin Show documentation
Show all versions of android-gradle-plugin Show documentation
The official Android SDK Plugin for Zhugeio.
package com.zhugeioanalytics.android.plugin;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.commons.JSRInlinerAdapter;
public class ZhugeioAnalyticsJSRAdapter extends JSRInlinerAdapter {
public ZhugeioAnalyticsJSRAdapter(int api, MethodVisitor methodVisitor, int access, String name, String descriptor, String signature, String[] exceptions) {
super(api, methodVisitor, access, name, descriptor, signature, exceptions);
}
}