Back to project page android-data-persistence.
The source code is released under:
MIT License
If you think the Android project android-data-persistence 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.teamtreehouse.mememaker; //from www .j a v a 2 s . com import android.preference.Preference; import android.preference.PreferenceManager; import com.teamtreehouse.mememaker.utils.FileUtilities; /** * Created by Evan Anger on 7/28/14. */ public class MemeMakerApplication extends android.app.Application { @Override public void onCreate() { super.onCreate(); FileUtilities.saveAssetImage(this, "dogmess.jpg"); FileUtilities.saveAssetImage(this, "excitedcat.jpg"); FileUtilities.saveAssetImage(this, "guiltypup.jpg"); PreferenceManager.setDefaultValues(this, R.xml.preferences, false); } }