Skip to content

Instantly share code, notes, and snippets.

@RanjitPati
Created June 6, 2019 11:26
Show Gist options
  • Save RanjitPati/e5c58f58d185824a6f28218a8e4b6845 to your computer and use it in GitHub Desktop.
Save RanjitPati/e5c58f58d185824a6f28218a8e4b6845 to your computer and use it in GitHub Desktop.
package com.ajk.frescotestapp;
import android.app.Application;
import com.facebook.drawee.backends.pipeline.Fresco;
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
//initialize Fresco
Fresco.initialize(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment