Back to project page commit-android.
The source code is released under:
GNU General Public License
If you think the Android project commit-android 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.mauriciogiordano.commit.database; /* ww w . j a v a2 s . com*/ import com.j256.ormlite.android.apptools.OrmLiteConfigUtil; import java.io.IOException; import java.sql.SQLException; public class DatabaseConfigUtil extends OrmLiteConfigUtil { private static final Class<?>[] classes = new Class[] { Commitment.class, }; public static void main(String[] args) throws SQLException, IOException { writeConfigFile("orm_config.txt", classes); } }