diff --git a/SweetDreamsLite/.classpath b/SweetDreamsLite/.classpath
new file mode 100644
index 0000000..9c666df
--- /dev/null
+++ b/SweetDreamsLite/.classpath
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/SweetDreamsLite/.codepro/deadCodeEntryPoints.xml b/SweetDreamsLite/.codepro/deadCodeEntryPoints.xml
new file mode 100644
index 0000000..814d580
--- /dev/null
+++ b/SweetDreamsLite/.codepro/deadCodeEntryPoints.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SweetDreamsLite/.project b/SweetDreamsLite/.project
new file mode 100644
index 0000000..d61587d
--- /dev/null
+++ b/SweetDreamsLite/.project
@@ -0,0 +1,40 @@
+
+
+ SweetDreamsLite
+
+
+
+
+
+ com.android.ide.eclipse.adt.ResourceManagerBuilder
+
+
+
+
+ com.android.ide.eclipse.adt.PreCompilerBuilder
+
+
+
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
+
+ com.android.ide.eclipse.adt.ApkBuilder
+
+
+
+
+
+ com.android.ide.eclipse.adt.AndroidNature
+ org.eclipse.jdt.core.javanature
+
+
+
+ SweetDreamsLib_src
+ 2
+ _android_SweetDreamsLib_c16ccaa5/src
+
+
+
diff --git a/SweetDreamsLite/AndroidManifest.xml b/SweetDreamsLite/AndroidManifest.xml
new file mode 100644
index 0000000..73bd7d4
--- /dev/null
+++ b/SweetDreamsLite/AndroidManifest.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SweetDreamsLite/bin/classes.dex b/SweetDreamsLite/bin/classes.dex
new file mode 100644
index 0000000..340ec0f
Binary files /dev/null and b/SweetDreamsLite/bin/classes.dex differ
diff --git a/SweetDreamsLite/bin/resources.ap_ b/SweetDreamsLite/bin/resources.ap_
new file mode 100644
index 0000000..1137990
Binary files /dev/null and b/SweetDreamsLite/bin/resources.ap_ differ
diff --git a/SweetDreamsLite/default.properties b/SweetDreamsLite/default.properties
new file mode 100644
index 0000000..9f1158a
--- /dev/null
+++ b/SweetDreamsLite/default.properties
@@ -0,0 +1,12 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system use,
+# "build.properties", and override values to adapt the script to your
+# project structure.
+
+# Project target.
+target=android-9
+android.library.reference.1=../SweetDreamsLib
diff --git a/SweetDreamsLite/proguard.cfg b/SweetDreamsLite/proguard.cfg
new file mode 100644
index 0000000..8ad7d33
--- /dev/null
+++ b/SweetDreamsLite/proguard.cfg
@@ -0,0 +1,34 @@
+-optimizationpasses 5
+-dontusemixedcaseclassnames
+-dontskipnonpubliclibraryclasses
+-dontpreverify
+-verbose
+-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
+
+-keep public class * extends android.app.Activity
+-keep public class * extends android.app.Application
+-keep public class * extends android.app.Service
+-keep public class * extends android.content.BroadcastReceiver
+-keep public class * extends android.content.ContentProvider
+-keep public class com.android.vending.licensing.ILicensingService
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+-keepclasseswithmembernames class * {
+ public (android.content.Context, android.util.AttributeSet);
+}
+
+-keepclasseswithmembernames class * {
+ public (android.content.Context, android.util.AttributeSet, int);
+}
+
+-keepclassmembers enum * {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+-keep class * implements android.os.Parcelable {
+ public static final android.os.Parcelable$Creator *;
+}
diff --git a/SweetDreamsLite/src/com/TwentyCodes/android/SweetDreamsLite/SweetDreams.java b/SweetDreamsLite/src/com/TwentyCodes/android/SweetDreamsLite/SweetDreams.java
new file mode 100644
index 0000000..e6d1ae6
--- /dev/null
+++ b/SweetDreamsLite/src/com/TwentyCodes/android/SweetDreamsLite/SweetDreams.java
@@ -0,0 +1,27 @@
+/**
+ * SweetDreams.java
+ * @date Feb 6, 2011
+ * @author ricky barrette
+ * @author Twenty Codes, LLC
+ */
+package com.TwentyCodes.android.SweetDreamsLite;
+
+import android.os.Bundle;
+
+import com.TwentyCodes.android.SweetDreamsLib.SweetDreamsFull;
+
+/**
+ * Main Activity
+ * @author ricky barrette
+ */
+public class SweetDreams extends SweetDreamsFull {
+
+ /**
+ * Called when the activity is first created.
+ */
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ setContentView(R.layout.main_lite);
+ super.onCreate(savedInstanceState);
+ }
+}
\ No newline at end of file