lite version of sweet dreams.

This commit is contained in:
2011-02-11 13:15:33 +00:00
parent c50f0ac50c
commit d28dc039a6
9 changed files with 153 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.SweetDreamsLite"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" />
<application android:label="@string/app_name_lite" android:icon="@drawable/playdisabled">
<activity android:name=".SweetDreams" android:label="@string/app_name_lite">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:value="a14d552cbd272f2" android:name="ADMOB_PUBLISHER_ID" />
<activity android:name="com.TwentyCodes.android.SweetDreamsLib.Settings"></activity>
</application>
</manifest>