full version of sweet dreams.

This commit is contained in:
2011-02-11 13:16:34 +00:00
parent 5cd2d8e1ae
commit f75dd9fc39
9 changed files with 542 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.TwentyCodes.android.SweetDreamsFull"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" />
<application android:label="@string/app_name" android:icon="@drawable/playdisabled">
<activity android:name="SweetDreams">
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
<activity android:name="com.TwentyCodes.android.SweetDreamsLib.Settings"></activity>
</application>
</manifest>