Back to project page dexedd.
The source code is released under:
MIT License
If you think the Android project dexedd listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nav.dexedd.activity; // w w w .j a va 2s. com import android.app.Application; import com.nostra13.universalimageloader.core.ImageLoader; import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; /** * Application class. * * @author Eduardo Naveda * @since 0.0.1 */ public class Dexedd extends Application { private static final String TAG = Dexedd.class.getSimpleName(); @Override public void onCreate() { super.onCreate(); // UIL config ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext()).build(); ImageLoader.getInstance().init(config); } }