Back to project page spiderreddit.
The source code is released under:
MIT License
If you think the Android project spiderreddit 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.davepayne.blogcrawler.db; // w w w.j ava2 s . co m import com.j256.ormlite.android.apptools.OrmLiteConfigUtil; import java.io.File; import java.io.IOException; import java.sql.SQLException; /** * Only used once to generate initial ormlite_config.txt file. */ public class RSSDBConfigUtil extends OrmLiteConfigUtil { private static final Class<?>[] classes = new Class[]{ RSSDBData.class, }; public static void main(String[] args) throws IOException, SQLException { writeConfigFile(new File("C:/dev/workspace/davepayne/res/raw/ormlite_config.txt"), classes); } }