Back to project page Android-ORM.
The source code is released under:
Apache License
If you think the Android project Android-ORM listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from www . j a v a 2 s . c o m */ package cn.ieclipse.aorm.example; import android.app.Application; import android.util.Log; import cn.ieclipse.aorm.Aorm; /** * @author Jamling * */ public class ExampleApplication extends Application { public static final String TAG = "AORM example"; @Override public void onCreate() { super.onCreate(); Log.i(TAG, "onCreate"); Aorm.enableDebug(true); } }