Back to project page AndroidZipcodeLib.
The source code is released under:
MIT License
If you think the Android project AndroidZipcodeLib 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 codemonkeylabs.androidzipcodelib.sample; //from w w w . j ava 2s. c om import android.app.Application; import codemonkeylabs.androidzipcodelib.library.ZipcodeLib; /** * Created by brianplummer on 2/17/14. */ public class ZipcodeSampleApplication extends Application { @Override public void onCreate() { super.onCreate(); ZipcodeLib.init(getApplicationContext()); } }