From 14e6b87ee744fe2407cf10cd46c53db288a23727 Mon Sep 17 00:00:00 2001 From: Bradley Young Date: Fri, 19 Dec 2008 00:14:49 +0000 Subject: [PATCH] This is a working semi-deforked application. i.e. most of it is still in the com.android.email namespace, but choice bits are in com.fsck.k9 so that it won't try to overwrite the builtin client. Changes: corrected the package (or something equally simple for K9.java build.xml has an additional stanza that copies the R.java file from fsck to android namespace, and changes the package inside the file. AndroidManifest.xml has the package set to fsck, and all the activities are now explicity named. --- AndroidManifest.xml | 43 +++++++++++++++++++---------------------- build.xml | 13 +++++++++---- src/com/fsck/k9/K9.java | 4 +++- 3 files changed, 32 insertions(+), 28 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index a1abe0860..913debde2 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,9 +1,7 @@ + android:versionName="0.22" package="com.fsck.k9"> @@ -16,9 +14,8 @@ android:label="@string/read_attachment_label" android:description="@string/read_attachment_desc"/> - - + + @@ -27,70 +24,70 @@ + android:name="com.android.email.activity.FolderMessageList"> + android:name="com.android.email.activity.MessageView"> @@ -111,7 +108,7 @@ - @@ -125,12 +122,12 @@ - + @@ -126,9 +126,14 @@ - - - + + + + + + + + diff --git a/src/com/fsck/k9/K9.java b/src/com/fsck/k9/K9.java index c0d005508..a12bb3ac8 100644 --- a/src/com/fsck/k9/K9.java +++ b/src/com/fsck/k9/K9.java @@ -1,4 +1,6 @@ -package com.fsck; +package com.fsck.k9; + import com.android.email.Email; + public class K9 extends Email { }