Skip to content

Instantly share code, notes, and snippets.

@AliAzaz
Created May 28, 2019 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliAzaz/2bd7e9766e409bfe79421036367e643f to your computer and use it in GitHub Desktop.
Save AliAzaz/2bd7e9766e409bfe79421036367e643f to your computer and use it in GitHub Desktop.
Application file for Fresco implementation
package com.aliazaz.galleryapp;
import android.app.Application;
import com.facebook.drawee.backends.pipeline.Fresco;
public class MainApp extends Application {
@Override
public void onCreate() {
super.onCreate();
//Initializing
Fresco.initialize(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment