├── README.txt └── android ├── ClickCounter ├── .gitignore ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── ormlite-5.1.jar │ └── ormlite-android-5.1.jar ├── ormlite-android-5.1-javadoc.jar ├── ormlite-android-5.1-sources.jar ├── ormlite-core-5.1-javadoc.jar ├── ormlite-core-5.1-sources.jar ├── project.properties ├── res │ ├── drawable │ │ └── icon.png │ ├── layout │ │ ├── count_row.xml │ │ ├── counter_screen.xml │ │ ├── create_counter.xml │ │ └── main.xml │ ├── raw │ │ ├── click.ogg │ │ └── ormlite_config.txt │ └── values │ │ └── strings.xml └── src │ └── com │ └── kagii │ └── clickcounter │ ├── ClickConfig.java │ ├── CounterScreen.java │ ├── CreateCounter.java │ └── data │ ├── ClickCount.java │ ├── ClickGroup.java │ ├── DatabaseConfigUtil.java │ └── DatabaseHelper.java ├── HelloAndroid ├── .gitignore ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── ormlite-android-4.43.jar │ └── ormlite-core-4.43.jar ├── ormlite-android-4.43-javadoc.jar ├── ormlite-android-4.43-sources.jar ├── ormlite-core-4.43-javadoc.jar ├── ormlite-core-4.43-sources.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── main.xml │ ├── raw │ │ └── ormlite_config.txt │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── helloandroid │ ├── DatabaseConfigUtil.java │ ├── DatabaseHelper.java │ ├── HelloAndroid.java │ └── SimpleData.java ├── HelloAndroidH2 ├── .gitignore ├── AndroidManifest.xml ├── README.txt ├── h2-1.2.128-javadoc.jar ├── h2-1.2.128-sources.jar ├── libs │ ├── h2-1.2.128.jar │ ├── ormlite-core-4.41.jar │ └── ormlite-jdbc-4.41.jar ├── ormlite-core-4.41-javadoc.jar ├── ormlite-core-4.41-sources.jar ├── ormlite-jdbc-4.41-javadoc.jar ├── ormlite-jdbc-4.41-sources.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── helloandroidh2 │ ├── HelloAndroidH2.java │ └── SimpleData.java ├── HelloAndroidNoBase ├── .gitignore ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── ormlite-android-4.41.jar │ └── ormlite-core-4.41.jar ├── ormlite-android-4.41-javadoc.jar ├── ormlite-android-4.41-sources.jar ├── ormlite-core-4.41-javadoc.jar ├── ormlite-core-4.41-sources.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── hellonobase │ ├── DatabaseHelper.java │ ├── HelloNoBase.java │ └── SimpleData.java ├── HelloAndroidNoHelper ├── .gitignore ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── ormlite-android-4.41.jar │ └── ormlite-core-4.41.jar ├── ormlite-android-4.41-javadoc.jar ├── ormlite-android-4.41-sources.jar ├── ormlite-core-4.41-javadoc.jar ├── ormlite-core-4.41-sources.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── hellonohelper │ ├── DatabaseHelper.java │ ├── HelloNoHelper.java │ └── SimpleData.java ├── HelloAndroidTwoDbs ├── .gitignore ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── ormlite-android-4.41.jar │ └── ormlite-core-4.41.jar ├── ormlite-android-4.41-javadoc.jar ├── ormlite-android-4.41-sources.jar ├── ormlite-core-4.41-javadoc.jar ├── ormlite-core-4.41-sources.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── hellotwodbs │ ├── ComplexData.java │ ├── DatabaseHelper1.java │ ├── DatabaseHelper2.java │ ├── HelloTwoDbs.java │ └── SimpleData.java └── NotifyService ├── .gitignore ├── AndroidManifest.xml ├── README.txt ├── default.properties ├── libs ├── ormlite-android-4.43.jar └── ormlite-core-4.43.jar ├── ormlite-android-4.43-javadoc.jar ├── ormlite-android-4.43-sources.jar ├── ormlite-core-4.43-javadoc.jar ├── ormlite-core-4.43-sources.jar ├── project.properties ├── res ├── drawable │ └── icon.png ├── layout │ ├── main.xml │ └── thing_activity.xml └── values │ └── strings.xml └── src └── com └── example └── notifyservice ├── GetStuffService.java ├── MyActivity.java ├── ThingActivity.java └── data ├── DatabaseHelper.java └── Thing.java /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/README.txt -------------------------------------------------------------------------------- /android/ClickCounter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/.gitignore -------------------------------------------------------------------------------- /android/ClickCounter/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/AndroidManifest.xml -------------------------------------------------------------------------------- /android/ClickCounter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/README.txt -------------------------------------------------------------------------------- /android/ClickCounter/libs/ormlite-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/libs/ormlite-5.1.jar -------------------------------------------------------------------------------- /android/ClickCounter/libs/ormlite-android-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/libs/ormlite-android-5.1.jar -------------------------------------------------------------------------------- /android/ClickCounter/ormlite-android-5.1-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/ormlite-android-5.1-javadoc.jar -------------------------------------------------------------------------------- /android/ClickCounter/ormlite-android-5.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/ormlite-android-5.1-sources.jar -------------------------------------------------------------------------------- /android/ClickCounter/ormlite-core-5.1-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/ormlite-core-5.1-javadoc.jar -------------------------------------------------------------------------------- /android/ClickCounter/ormlite-core-5.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/ormlite-core-5.1-sources.jar -------------------------------------------------------------------------------- /android/ClickCounter/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/project.properties -------------------------------------------------------------------------------- /android/ClickCounter/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/drawable/icon.png -------------------------------------------------------------------------------- /android/ClickCounter/res/layout/count_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/layout/count_row.xml -------------------------------------------------------------------------------- /android/ClickCounter/res/layout/counter_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/layout/counter_screen.xml -------------------------------------------------------------------------------- /android/ClickCounter/res/layout/create_counter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/layout/create_counter.xml -------------------------------------------------------------------------------- /android/ClickCounter/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/layout/main.xml -------------------------------------------------------------------------------- /android/ClickCounter/res/raw/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/raw/click.ogg -------------------------------------------------------------------------------- /android/ClickCounter/res/raw/ormlite_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/raw/ormlite_config.txt -------------------------------------------------------------------------------- /android/ClickCounter/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/res/values/strings.xml -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/ClickConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/ClickConfig.java -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/CounterScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/CounterScreen.java -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/CreateCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/CreateCounter.java -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/data/ClickCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/data/ClickCount.java -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/data/ClickGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/data/ClickGroup.java -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/data/DatabaseConfigUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/data/DatabaseConfigUtil.java -------------------------------------------------------------------------------- /android/ClickCounter/src/com/kagii/clickcounter/data/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/ClickCounter/src/com/kagii/clickcounter/data/DatabaseHelper.java -------------------------------------------------------------------------------- /android/HelloAndroid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/.gitignore -------------------------------------------------------------------------------- /android/HelloAndroid/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /android/HelloAndroid/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/AndroidManifest.xml -------------------------------------------------------------------------------- /android/HelloAndroid/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/README.txt -------------------------------------------------------------------------------- /android/HelloAndroid/libs/ormlite-android-4.43.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/libs/ormlite-android-4.43.jar -------------------------------------------------------------------------------- /android/HelloAndroid/libs/ormlite-core-4.43.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/libs/ormlite-core-4.43.jar -------------------------------------------------------------------------------- /android/HelloAndroid/ormlite-android-4.43-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/ormlite-android-4.43-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroid/ormlite-android-4.43-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/ormlite-android-4.43-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroid/ormlite-core-4.43-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/ormlite-core-4.43-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroid/ormlite-core-4.43-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/ormlite-core-4.43-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroid/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/project.properties -------------------------------------------------------------------------------- /android/HelloAndroid/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroid/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroid/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroid/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/res/layout/main.xml -------------------------------------------------------------------------------- /android/HelloAndroid/res/raw/ormlite_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/res/raw/ormlite_config.txt -------------------------------------------------------------------------------- /android/HelloAndroid/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/res/values/strings.xml -------------------------------------------------------------------------------- /android/HelloAndroid/src/com/example/helloandroid/DatabaseConfigUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/src/com/example/helloandroid/DatabaseConfigUtil.java -------------------------------------------------------------------------------- /android/HelloAndroid/src/com/example/helloandroid/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/src/com/example/helloandroid/DatabaseHelper.java -------------------------------------------------------------------------------- /android/HelloAndroid/src/com/example/helloandroid/HelloAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/src/com/example/helloandroid/HelloAndroid.java -------------------------------------------------------------------------------- /android/HelloAndroid/src/com/example/helloandroid/SimpleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroid/src/com/example/helloandroid/SimpleData.java -------------------------------------------------------------------------------- /android/HelloAndroidH2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/.gitignore -------------------------------------------------------------------------------- /android/HelloAndroidH2/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/AndroidManifest.xml -------------------------------------------------------------------------------- /android/HelloAndroidH2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/README.txt -------------------------------------------------------------------------------- /android/HelloAndroidH2/h2-1.2.128-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/h2-1.2.128-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/h2-1.2.128-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/h2-1.2.128-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/libs/h2-1.2.128.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/libs/h2-1.2.128.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/libs/ormlite-core-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/libs/ormlite-core-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/libs/ormlite-jdbc-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/libs/ormlite-jdbc-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/ormlite-core-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/ormlite-core-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/ormlite-core-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/ormlite-core-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/ormlite-jdbc-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/ormlite-jdbc-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/ormlite-jdbc-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/ormlite-jdbc-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidH2/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/project.properties -------------------------------------------------------------------------------- /android/HelloAndroidH2/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidH2/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidH2/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidH2/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/res/layout/main.xml -------------------------------------------------------------------------------- /android/HelloAndroidH2/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/res/values/strings.xml -------------------------------------------------------------------------------- /android/HelloAndroidH2/src/com/example/helloandroidh2/HelloAndroidH2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/src/com/example/helloandroidh2/HelloAndroidH2.java -------------------------------------------------------------------------------- /android/HelloAndroidH2/src/com/example/helloandroidh2/SimpleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidH2/src/com/example/helloandroidh2/SimpleData.java -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/.gitignore -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/AndroidManifest.xml -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/README.txt -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/libs/ormlite-android-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/libs/ormlite-android-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/libs/ormlite-core-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/libs/ormlite-core-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/ormlite-android-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/ormlite-android-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/ormlite-android-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/ormlite-android-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/ormlite-core-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/ormlite-core-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/ormlite-core-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/ormlite-core-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/project.properties -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/res/layout/main.xml -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/res/values/strings.xml -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/src/com/example/hellonobase/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/src/com/example/hellonobase/DatabaseHelper.java -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/src/com/example/hellonobase/HelloNoBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/src/com/example/hellonobase/HelloNoBase.java -------------------------------------------------------------------------------- /android/HelloAndroidNoBase/src/com/example/hellonobase/SimpleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoBase/src/com/example/hellonobase/SimpleData.java -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/.gitignore -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/AndroidManifest.xml -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/README.txt -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/libs/ormlite-android-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/libs/ormlite-android-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/libs/ormlite-core-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/libs/ormlite-core-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/ormlite-android-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/ormlite-android-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/ormlite-android-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/ormlite-android-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/ormlite-core-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/ormlite-core-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/ormlite-core-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/ormlite-core-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/project.properties -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/res/layout/main.xml -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/res/values/strings.xml -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/src/com/example/hellonohelper/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/src/com/example/hellonohelper/DatabaseHelper.java -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/src/com/example/hellonohelper/HelloNoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/src/com/example/hellonohelper/HelloNoHelper.java -------------------------------------------------------------------------------- /android/HelloAndroidNoHelper/src/com/example/hellonohelper/SimpleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidNoHelper/src/com/example/hellonohelper/SimpleData.java -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/.gitignore -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/AndroidManifest.xml -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/README.txt -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/libs/ormlite-android-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/libs/ormlite-android-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/libs/ormlite-core-4.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/libs/ormlite-core-4.41.jar -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/ormlite-android-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/ormlite-android-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/ormlite-android-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/ormlite-android-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/ormlite-core-4.41-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/ormlite-core-4.41-javadoc.jar -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/ormlite-core-4.41-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/ormlite-core-4.41-sources.jar -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/project.properties -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/res/layout/main.xml -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/res/values/strings.xml -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/ComplexData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/ComplexData.java -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/DatabaseHelper1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/DatabaseHelper1.java -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/DatabaseHelper2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/DatabaseHelper2.java -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/HelloTwoDbs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/HelloTwoDbs.java -------------------------------------------------------------------------------- /android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/SimpleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/HelloAndroidTwoDbs/src/com/example/hellotwodbs/SimpleData.java -------------------------------------------------------------------------------- /android/NotifyService/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/.gitignore -------------------------------------------------------------------------------- /android/NotifyService/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/AndroidManifest.xml -------------------------------------------------------------------------------- /android/NotifyService/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/README.txt -------------------------------------------------------------------------------- /android/NotifyService/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/default.properties -------------------------------------------------------------------------------- /android/NotifyService/libs/ormlite-android-4.43.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/libs/ormlite-android-4.43.jar -------------------------------------------------------------------------------- /android/NotifyService/libs/ormlite-core-4.43.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/libs/ormlite-core-4.43.jar -------------------------------------------------------------------------------- /android/NotifyService/ormlite-android-4.43-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/ormlite-android-4.43-javadoc.jar -------------------------------------------------------------------------------- /android/NotifyService/ormlite-android-4.43-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/ormlite-android-4.43-sources.jar -------------------------------------------------------------------------------- /android/NotifyService/ormlite-core-4.43-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/ormlite-core-4.43-javadoc.jar -------------------------------------------------------------------------------- /android/NotifyService/ormlite-core-4.43-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/ormlite-core-4.43-sources.jar -------------------------------------------------------------------------------- /android/NotifyService/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/project.properties -------------------------------------------------------------------------------- /android/NotifyService/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/res/drawable/icon.png -------------------------------------------------------------------------------- /android/NotifyService/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/res/layout/main.xml -------------------------------------------------------------------------------- /android/NotifyService/res/layout/thing_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/res/layout/thing_activity.xml -------------------------------------------------------------------------------- /android/NotifyService/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/res/values/strings.xml -------------------------------------------------------------------------------- /android/NotifyService/src/com/example/notifyservice/GetStuffService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/src/com/example/notifyservice/GetStuffService.java -------------------------------------------------------------------------------- /android/NotifyService/src/com/example/notifyservice/MyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/src/com/example/notifyservice/MyActivity.java -------------------------------------------------------------------------------- /android/NotifyService/src/com/example/notifyservice/ThingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/src/com/example/notifyservice/ThingActivity.java -------------------------------------------------------------------------------- /android/NotifyService/src/com/example/notifyservice/data/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/src/com/example/notifyservice/data/DatabaseHelper.java -------------------------------------------------------------------------------- /android/NotifyService/src/com/example/notifyservice/data/Thing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/ormlite-examples/HEAD/android/NotifyService/src/com/example/notifyservice/data/Thing.java --------------------------------------------------------------------------------