Installing the Freshpaint Android SDK
implementation 'io.freshpaint.android:freshpaint:2.0.4'import io.freshpaint.android.Freshpaint;
import io.freshpaint.android.Properties;Freshpaint freshpaint = new Freshpaint.Builder(getApplicationContext(), "<your environment id>")
.trackApplicationLifecycleEvents()
.recordScreenViews()
.build();
Freshpaint.setSingletonInstance(freshpaint);Verifying Your Instrumentation

Last updated
Was this helpful?