Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
John Veneziale committed Jan 27, 2011
1 parent ec1e4f9 commit cb0d4ca
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional

LOCAL_PACKAGE_NAME := Purpbread

LOCAL_SRC_FILES := $(call all-java-files-under, src)

LOCAL_AAPT_FLAGS := -x 10

include $(BUILD_PACKAGE)
29 changes: 29 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gfxandroid.theme.Purplebread"
xmlns:pluto="http://www.w3.org/2001/pluto.html"
android:hasCode="false">

<application android:icon="@drawable/icon" android:label="@string/theme_name">
<activity android:name="com.tmobile.theme.Foo"
android:label="@string/theme_name"/>
</application>

<theme
pluto:themeId="Purpbread"
pluto:styleId="@style/Purpbread"
pluto:name="@string/theme_name"
pluto:thumbnail="media/images/thumb.png"
pluto:preview="media/images/preview.png"
pluto:author="@string/author"
pluto:copyright="@string/copyright"
pluto:wallpaperImage="media/images/homescreen.jpg"
pluto:styleName="@string/style_appearance_name"
pluto:ringtoneName="Whistler"
pluto:ringtoneFileName="media/audio/ringtones/Whistler.mp3"
pluto:notificationRingtoneName="Spacious"
pluto:notificationRingtoneFileName="media/audio/notifications/Spacious.mp3"
/>

</manifest>
Empty file added README
Empty file.

0 comments on commit cb0d4ca

Please sign in to comment.