-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Veneziale
committed
Jan 27, 2011
1 parent
ec1e4f9
commit cb0d4ca
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |