Warning! Samsung's My Magazine Home.apk - Verizon Galaxy Note 3 General

Warning!
Samsung's My Magazine Home.Apk reads your contacts as mail is received -
and a side effect bug. If "My Magazine Home.apk" is removed from the system folder and you have email notification switched on - you will get an error, email will stop working if you attempt to open your incoming email from the notification bar...

Well this solves my entire issue damn I had no idea why Email was doing that on Stock

App Ops? - the answer? Maybe?
tokan_one said:
Well this solves my entire issue damn I had no idea why Email was doing that on Stock
Click to expand...
Click to collapse
This is a function of trust I guess -
On my ROM, Beanstown106's Jellybeans Rom for Note 3 - *MJE version; I opted to put My Magazine back but go to App Ops, find Magazine, and revoke permissions for reading contacts, and updates etc... Will it work, dunno?
To further prevent "stuff" from happening with Magazine, I cracked open SQL Lite editor, found the My Magazine database, and looked in the config table - stripped it of all personal account information (e.g. contacts, music, video, etc) - whatever I can find... whacked it...
Have a nice day

anticloud said:
This is a function of trust I guess -
On my ROM, Beanstown106's Jellybeans Rom for Note 3 - *MJE version; I opted to put My Magazine back but go to App Ops, find Magazine, and revoke permissions for reading contacts, and updates etc... Will it work, dunno?
To further prevent "stuff" from happening with Magazine, I cracked open SQL Lite editor, found the My Magazine database, and looked in the config table - stripped it of all personal account information (e.g. contacts, music, video, etc) - whatever I can find... whacked it...
Have a nice day
Click to expand...
Click to collapse
I have two My Magazine's listed:
"sstream.app" & "com.samsung.android.app.lounge"
I've looked in both and i dont see any personal info anywhere.
more info?

The permissions required to run the app tell the tale. I saw the permissions and immediately closed the app. I got no time for that jibber jabber.
Sent from my SM-N900V using Tapatalk

The interesting part is freezing it causes the problem. So whatever actually hands email notification over to My Magazine still tries to do it. I wonder if figuring out what is handing it off could be patched up.
Sent from my SM-N900V using XDA Premium 4 mobile app

Related

WORKING FIX: facebook contact info in 3rd-party apps (including pics) ROOT REQUIRED

In case you missed the subject: ROOT REQUIRED.
Also, this issue only affects phones that are running Android 2.x *and* version 1.3 of the official Facebook app. Also, it only affects things synchronized by the Facebook app itself -- if you've used syncmypics, those pics are actually attached to your google account now, "manually".
As lots of you already know, android 2.x has a new contacts API, that allows sync providers (such as Facebook) restrict their information to just the system contacts app (and packages sharing the same uid). Facebook, in their infinite (lack of...) wisdom, has decided to mark their info as restricted, meaning that contact pics don't show up in, say, Dialer One, or any non-stock messaging or contacts widget. I'm reading in a bunch of places that this functionality was actually added at the behest of Facebook.
This. Is annoying.
Here's an incomplete list of common apps missing facebook pictures, that you would usually expect to have them:
Dialer One
SMS Popup
Google Voice
LauncherPro widgets
Pure Messenger Widget
This is particularly annoying, because there's not even a "permission" (so far as I'm aware) that you can grant apps to allow them access to "restricted" contacts. You just simply have to be running at uid 10000 (aka "app_0"). Individual apps can apparently get around this by ignoring the nice Android contact content provider API's and querying the database directly, but only a handful (such as Handcent and chompSMS) seem to do this.
There are a few ways around this globally (i.e. not on a per-app basis). Basically, you have three potential approaches:
Change the Facebook app to not mark it as restricted.
Change the API to ignore the silly "is_restricted" flag when enumerating contacts.
Change the restricted flag in the database itself.
Modifying the Facebook app ourselves is probably illegal, as it involves decompiling the facebook app, and I really don't want to tangle with their lawyers. We can hope that they release a new version without the stupid restriction, though.
We could change the API -- Android is, after all, open source. However, that means each ROM would have to include the modified library files to ignore the restriction. Also, there might be a time when you actually *do* want to keep some things restricted, so I'm not keen on simply removing the functionality. I just want to have the Facebook data unrestricted.
So, of course, I took option 3: Change it in the database. I now have face contact pics in Dialer One, as well as all of my 3rd-party applications, without needing to make any ROM changes, or even any application config changes. To make sure it *stays* that way when new content is added/updated, I added a couple triggers to the database to re-unrestrict it every time more facebook data is added or changed. In a single command, through adb. Here it is (MAKE BACKUPS FIRST):
Code:
adb shell sqlite3 /data/data/com.android.providers.contacts/databases/contacts2.db "CREATE TRIGGER unrestrict_new_data AFTER INSERT ON raw_contacts BEGIN UPDATE raw_contacts SET is_restricted=0 WHERE _id=NEW._id and NEW.is_restricted!=0 and NEW.account_type in ('com.facebook.auth.login'); END; CREATE TRIGGER unrestrict_updated_data AFTER UPDATE OF is_restricted ON raw_contacts BEGIN UPDATE raw_contacts SET is_restricted=0 WHERE _id=NEW._id and NEW.is_restricted!=0 and NEW.account_type in ('com.facebook.auth.login'); END; UPDATE raw_contacts SET is_restricted=0 WHERE is_restricted!=0 AND account_type in ('com.facebook.auth.login');"
Yeah, it's long. For the curious, I'll dissect the above command a little. Basically, it does three things: make an INSERT trigger, make an UPDATE trigger, and set everything that's already there to be unrestricted.
The INSERT trigger happens whenever a sync provider adds a new contact. This trigger will notice if it's a facebook contact trying to make a restricted contact (it leaves non-facebook ones alone), and overrides the is_restricted" flag, leaving it unrestricted.
The UPDATE trigger does the same thing, but it's triggered when a facebook contact has its is_restricted" flag changed back to restricted. It leaves all other changes alone.
The update itself takes all of your facebook contacts, and changes the "is_restricted" flag to unrestricted.
FYI, the "raw_contacts" table is where the sync providers actually store their data, including thumbnails. Yes, they're directly in the DB itself. There's a separate "contacts" table that's generated from the "raw_contacts" table, which is the list of things that are actually listed in your contacts application -- the "raw_contacts" table contains all the contacts you join together to create the ones in your normal list.
If, in the future, you want to override the "is_restricted" flag of other contact sync providers, just add it to the list in parens, comma-separated, that currently only says 'com.facebook.auth.login'.
Cheers!
Edited to add:
Handcent and chompSMS both seem to get the facebook pics just fine. Updated info above.
Reserved
Reserved for further info.
Going to try this now
Sent from my FroyoEris using XDA App
Nice work thx
This is good infos.
Too bad I'm at work and dont have adb access. Whats the steps for applying this thru terminal emulator?
My phone shows facebook photos in my dialer and handcent. Always has.
Sent from my nonsensikal froyo using XDA App
johnnyboy1549 said:
My phone shows facebook photos in my dialer and handcent. Always has.
Sent from my nonsensikal froyo using XDA App
Click to expand...
Click to collapse
This means you're either using older facebook apps, or you're using Android 1.6 still. This only affects newer FB apps and Android 2.0+.
Facebook pics show up in chompsms just fine for me.
Sent from my FroyoEris using Tapatalk
MJL99 said:
This is good infos.
Too bad I'm at work and dont have adb access. Whats the steps for applying this thru terminal emulator?
Click to expand...
Click to collapse
Just drop the "adb shell" from the beginning. Make sure you're root, of course.
truelove79 said:
Facebook pics show up in chompsms just fine for me.
Sent from my FroyoEris using Tapatalk
Click to expand...
Click to collapse
Yes, if you're using Android 1.6, or an older version of the FB app that didn't restrict the contacts.
would this cause my phone to freak out lock-ups and reboots
what is the best way to apply this i just did a full wipe
going to apply first thing...
I get sqlite3: file not found. on xtrROM 4.0.6.1 with facebook 1.3.2
timmywa said:
I get sqlite3: file not found. on xtrROM 4.0.6.1 with facebook 1.3.2
Click to expand...
Click to collapse
You'll need to get sqlite3. Most custom roms have it. I think a few stock ones do, as well, actually. Should be easy to find.
DS36 said:
would this cause my phone to freak out lock-ups and reboots
what is the best way to apply this i just did a full wipe
going to apply first thing...
Click to expand...
Click to collapse
No, I don't think it would. This is exactly what I've done on my own XaosFroyo V30. No issues.
zanfur said:
No, I don't think it would. This is exactly what I've done on my own XaosFroyo V30. No issues.
Click to expand...
Click to collapse
ok i have an issue i used to use sync my pix from the market
i unistalled it a while back but no matter what the older pics always comeback
even if i flashed a new rom or wipe
seems like it wont sync with the newer pics
is there a way to fix this
Killer work man this had been bugging me for a minute.
zanfur said:
Yes, if you're using Android 1.6, or an older version of the FB app that didn't restrict the contacts.
Click to expand...
Click to collapse
Im running KaosFroyo v31 and my facebook app is the most recent 1.3.2. Facebook contacts pics work just fine in chompsms. Maybe the chompsms dev just knows what he's doing.
Sent from my FroyoEris using Tapatalk
DS36 said:
ok i have an issue i used to use sync my pix from the market
i unistalled it a while back but no matter what the older pics always comeback
even if i flashed a new rom or wipe
seems like it wont sync with the newer pics
is there a way to fix this
Click to expand...
Click to collapse
The syncmypix app actually uploads pictures to your google contacts, so now anytime you sync your google contacts, those pics will come back. You can remove them by going to gmail on a computer, clicking "Contacts", and removing them manually. I'm looking around, but I don't see any nice way to do a bunch at once.
Can anyone else besides OP confirm that this works? Just wanna make sure it's working for more than one person before I try it...
zanfur said:
The syncmypix app actually uploads pictures to your google contacts, so now anytime you sync your google contacts, those pics will come back. You can remove them by going to gmail on a computer, clicking "Contacts", and removing them manually. I'm looking around, but I don't see any nice way to do a bunch at once.
Click to expand...
Click to collapse
Ok not a problem im a loser not many contacts...
Will post back results
Sent from my FroyoEris using XDA App

Best email app? POP and gmail?

I'm looking for a basic but functional email app for pop and gmail. The only requirement is really support for pop accounts and gmail. Live account support would be a plus but not required. Also it needs to clean up after itself. Like when I delete an email instead of leaving it in the trash I want it to empty them. Don't want it to ever delete emails from server unless I specify it in settings.
OK. I just named a bunch of requirement. LOL
By the way, free or really cheap also. Whatever the default email app in Task 14 Fat is haa all my wanted options except for emptying the trash when I exit it or even if I could just press one button to empty all trash it would be great.
TIA
Sent from my GT-P7510 using one finger.
I've yet to find an email app on tablet that I would like. I use inomail on my samsung galaxy s2 phone but it doesn't work as well on tablet. I've tried k9, maildroid, moxier mail, kaitlen mail, enhanced mail, stock email and touchwiz. I want something similar to email app on my iPad but haven't found anything so far. All the email clients I've used works but I didn't like the ui.
Benzoman said:
I'm looking for a basic but functional email app for pop and gmail. The only requirement is really support for pop accounts and gmail. Live account support would be a plus but not required. Also it needs to clean up after itself. Like when I delete an email instead of leaving it in the trash I want it to empty them. Don't want it to ever delete emails from server unless I specify it in settings.
OK. I just named a bunch of requirement. LOL
By the way, free or really cheap also. Whatever the default email app in Task 14 Fat is haa all my wanted options except for emptying the trash when I exit it or even if I could just press one button to empty all trash it would be great.
TIA
Sent from my GT-P7510 using one finger.
Click to expand...
Click to collapse
Can I suggest an alternative that makes the gmail app better, and makes email much easier to work with?
Instead of having the app aggregate your different email addresses, have gmail do it. I have 7 addresses (work, school, personal, spam, other work, old, and really old). Gmail checks the pop addresses every 10 minutes or so, the others just forward. Then I set a filter for each (to:[email protected]) to tag it. Make the tags different colors. When you load up the gmail app, you'll see the tags (so you can immediately see which email address it's coming from). Advantages: 1) never mess with more than one email address no matter what computer/phone/tablet you use; 2) shared address book; 3) security; 4) ease of use; 5) awesomeness.
You know what? I've thought about it for a while now, so I'll make a how-to post about it. I'll link when I finish.
A how to would be sweet. I also use too many email addresses so this sounds like a wonderful idea. I've just been figuring out too too many thing lately to really want to hop about this without complete reference in one place. Thanks mate for the idea even if you dinner get around to the how to.
Sent from my GT-P7510 using one stinky finger.

[Q] CM9 & Email subfolder notification

Hi,
I'm using the native Email client in CM9 with Exchange and was wondering if there was any way to enable notification when an email arrives in a subfolder. From my searching, it looks like Google has disregarded this feature request. This is rather strange as the Gmail client allows notifications for subfolders.
I know that Touchdown and Enhanced Email support subfolder notifications but I would prefer to use the native client if possible.
Do the CM guys touch the Email APK at all or just bundle it 'as is' from ICS source? I guess I could dust off old skills and start hacking the source myself...
All in all, I'm very happy with CM9. The notification bit is just a tad annoying.
Cheers!
elherr said:
Hi,
I'm using the native Email client in CM9 with Exchange and was wondering if there was any way to enable notification when an email arrives in a subfolder. From my searching, it looks like Google has disregarded this feature request. This is rather strange as the Gmail client allows notifications for subfolders.
I know that Touchdown and Enhanced Email support subfolder notifications but I would prefer to use the native client if possible.
Do the CM guys touch the Email APK at all or just bundle it 'as is' from ICS source? I guess I could dust off old skills and start hacking the source myself...
All in all, I'm very happy with CM9. The notification bit is just a tad annoying.
Cheers!
Click to expand...
Click to collapse
This has been a major gripe from me over the past year or so. Every other phone OS manufacturer has this feature built in except for Android. It's not like this is something that only a few people would use. I have rules like crazy for my work email and hate the fact that I have to run 2 different email setups to get everything to work right.
Stock app doesn't do sub-folder replications
Enhanced Email screws up big time on contact creation.
So I'm stuck setting up the stock app to just pull my contacts while using EE to pull subfolder emails notifications.
stalked_r/t said:
This has been a major gripe from me over the past year or so. Every other phone OS manufacturer has this feature built in except for Android. It's not like this is something that only a few people would use. I have rules like crazy for my work email and hate the fact that I have to run 2 different email setups to get everything to work right.
Stock app doesn't do sub-folder replications
Enhanced Email screws up big time on contact creation.
So I'm stuck setting up the stock app to just pull my contacts while using EE to pull subfolder emails notifications.
Click to expand...
Click to collapse
I have one folder in particular I need to monitor (autonomous alarm emails from network elements). I tried using the Email widget but there is an issue with that not updating. Bleh. I guess I'm kinda screwed unless Google releases an update or I write a patch.
Hmmm... searching Google I'm hearing noises of other firmware that have patched the Email client allowing notification for subfolders. I'll have to dig into this more later. 'Twould be cool if it was a trivial patch easily applied to current ICS/CM9 Email tree.
elherr said:
I have one folder in particular I need to monitor (autonomous alarm emails from network elements). I tried using the Email widget but there is an issue with that not updating. Bleh. I guess I'm kinda screwed unless Google releases an update or I write a patch.
Hmmm... searching Google I'm hearing noises of other firmware that have patched the Email client allowing notification for subfolders. I'll have to dig into this more later. 'Twould be cool if it was a trivial patch easily applied to current ICS/CM9 Email tree.
Click to expand...
Click to collapse
My GS2 running GB 2.36 doesn't support folders, but I have used EE and are currently using touchdown. The strange thing is my Acer tablet supports folders in both Honeycomb and ICS.
i noticed the other day that if you go into a subfolder using the stock app and press the menu button that you can set it up to sync. I receive so many email that I can't say for sure if the notification window notifies you of subfolder emails, but I know that if you look at all folders you'll see a gray number all the way to the right indicating how many unread emails are in that subfolder.
stalked_r/t said:
i noticed the other day that if you go into a subfolder using the stock app and press the menu button that you can set it up to sync. I receive so many email that I can't say for sure if the notification window notifies you of subfolder emails, but I know that if you look at all folders you'll see a gray number all the way to the right indicating how many unread emails are in that subfolder.
Click to expand...
Click to collapse
Yeah, I tried that. The folder will sync (I have local cache for folder) but I receive no notification of new emails when they arrive in folder. Grrrr!
I'm not sure why Google put subfolder notification in the Gmail app but not in the stock Email app. Very odd.
Any updates on this? Stuck in exactly the same situation here.
RpR said:
Any updates on this? Stuck in exactly the same situation here.
Click to expand...
Click to collapse
If it hasnt been posted in 2 months there are probably no updates
122ninjas said:
If it hasnt been posted in 2 months there are probably no updates
Click to expand...
Click to collapse
Or the owner of the thread found a solution and happily forgot about ever posting here
Ha! No solution but something more on the order of a workaround for my particular situation. I got rid of the subfolder and built rules in Exchange to discard messages of no import to me.
I have not checked Jelly Bean's Email client as yet. Hopefully it implements notification for child folders. If not then someone at Google needs to be flogged relentlessly.
How are you guys setting rules in the native app? Is it something that only works on Exchange? I'd love to find an app that will let me filter my IMAP account like regular apps like Thunderbird/Apple Mail do.
Sent from my SGH-I777 using Tapatalk 2
Slavestate said:
How are you guys setting rules in the native app? Is it something that only works on Exchange? I'd love to find an app that will let me filter my IMAP account like regular apps like Thunderbird/Apple Mail do.
Click to expand...
Click to collapse
Sorry, I might not have been clear. I built the filter rules on the Microsoft Exchange server, not on my phone.
Who are you using for mail? Google provides a nice array of server based filtering options with Gmail. Also, the stock ICS Gmail client supports child folder (label) notification with the option of setting ringtones per folder. Pure greatness in my opinion.
I'm not sure why the stock Email/Exchange does not implement these features. Very strange...
elherr said:
I'm not sure why the stock Email/Exchange does not implement these features. Very strange...
Click to expand...
Click to collapse
They want you to use their Gmail ;P
As of the latest JB build the email client functions are exactly the same. I had a DROID Charge before my Nexus, and someone modified that native email client to allow notifications for sub folders. Is there anyway to customize the native client? Anyone want to give this a try?
elherr said:
Sorry, I might not have been clear. I built the filter rules on the Microsoft Exchange server, not on my phone.
Who are you using for mail? Google provides a nice array of server based filtering options with Gmail. Also, the stock ICS Gmail client supports child folder (label) notification with the option of setting ringtones per folder. Pure greatness in my opinion.
I'm not sure why the stock Email/Exchange does not implement these features. Very strange...
Click to expand...
Click to collapse
Ahh gotcha! I do have a gmail account but also use my email from my own band/record label domain. Maybe I should just move all the lists im on over to Gmail..
Sent from my SGH-I777 using Tapatalk 2
markwg01 said:
As of the latest JB build the email client functions are exactly the same. I had a DROID Charge before my Nexus, and someone modified that native email client to allow notifications for sub folders. Is there anyway to customize the native client? Anyone want to give this a try?
Click to expand...
Click to collapse
The source code is available. Someone with the requisite Java skills would need to have the interest and spare time to rewrite some of the code.
Slavestate said:
Ahh gotcha! I do have a gmail account but also use my email from my own band/record label domain. Maybe I should just move all the lists im on over to Gmail..
Click to expand...
Click to collapse
It works great. I have a torrent of crap hitting my Gmail box but most of it gets filtered and tagged with a label. (FYI -- Google uses labels instead of actual folders in Gmail. For all intents and purposes they are equivalent)
For lists I actually nest lables. Parent label is 'Lists' and all the email lists I belong to are nested underneath. Filter rules automatically bypass the inbox and drop the email in the appropriate place.
See attached screenshot. In it I'm looking at 'Lists/ODK'.
I too have the same problem and have decided to use TouchDown.
I too am missing the nofitications from subfolders in the email app in Android, so I made a quick look at the source code of this app to see if it would be possible to add this feature myself.
The notification itself happens in the NotificationController.java class: https://android.googlesource.com/pl...com/android/email/NotificationController.java
I did until now manage it to get an event in this class when an email arrives in a subfolder by modifying the class EmailProvider.java: https://android.googlesource.com/pl...com/android/email/provider/EmailProvider.java
I've changed the getBaseNotificationUri method to also return an uri on MESSAGE event. The only problem now is that in NotificationController.java only the combined inbox is checked for new emails. Maybe I can change that so that every message is checked. Maybe I have some time this weekend to try this.
I've managed to build a version of the email app that shows notifications when an email arrives in a subfolder. But when clicking on the notification it just opens the inbox of the account. I have to adjust this part too. I hope I will find some time.

[Q] Can someone help me find an email client with these basic features please?

I've been on Android about 6 months now. First I had a Galaxy Note & now I have a Galaxy Note 2. In that time I've tried around 30 email clients (some free & some paid versions) but I've still not some across a client that can offer me some (what I consider) very simple features.
What I'd like the client to do is:
1. Be able to resize within the email view so I can see the whole email (or at least the width of it if the mail is longer than one page length). This is such a simple thing but the only one I've found that does this is the official Hotmail client but that brings with it a whole load of other issues... Even the Gmail client doesn't let you do this & you're forced to scroll around the screen trying to put together a virtual jigsaw puzzle in your head of what the whole email should look like.
2. Be able to set an option in the settings to always allow images. Again a simple feature. Something similar to the Gmail app would also be OK where you set it for each sender separately.
3. Always display as HTML.
4. Push notifications that display the message title/sender in the notification.
Hopefully someone knows of such a client but I haven't found one yet.
Thanks for your help people.
Nuwidol said:
I've been on Android about 6 months now. First I had a Galaxy Note & now I have a Galaxy Note 2. In that time I've tried around 30 email clients (some free & some paid versions) but I've still not some across a client that can offer me some (what I consider) very simple features.
What I'd like the client to do is:
1. Be able to resize within the email view so I can see the whole email (or at least the width of it if the mail is longer than one page length). This is such a simple thing but the only one I've found that does this is the official Hotmail client but that brings with it a whole load of other issues... Even the Gmail client doesn't let you do this & you're forced to scroll around the screen trying to put together a virtual jigsaw puzzle in your head of what the whole email should look like.
2. Be able to set an option in the settings to always allow images. Again a simple feature. Something similar to the Gmail app would also be OK where you set it for each sender separately.
3. Always display as HTML.
4. Push notifications that display the message title/sender in the notification.
Hopefully someone knows of such a client but I haven't found one yet.
Thanks for your help people.
Click to expand...
Click to collapse
Have you tried Enhanced Email? It does all these things that you're looking for.
omitav said:
Have you tried Enhanced Email? It does all these things that you're looking for.
Click to expand...
Click to collapse
Thanks. I downloaded Enhanced Email from the play store. It does most of the stuff but doesn't let you know the source or title of the incoming mail. Just tells you that you have new mail.
Also having some problems with formatting emails in mobile view.
It's probably the best I've tried though.
You probably won't find an email client that tells you the sender and title because usually people receive multiple emails at a time from various senders.
And try K 9 mail
Sent from my DROID2 using xda premium
Having used enhanced email for a few days I can say that it's definitely not up to use full time. When ever I reboot my phone it deletes my Hotmail account, it doesn't notify properly, has no push for Gmail, can't format html into mobile view effectively & has a poor gui. Very expensive for why it does.
I have tried K9 before & unless it's been updated recently there isn't an option to resize an email so that the while mail is displayed at once is there?
Nuwidol said:
Having used enhanced email for a few days I can say that it's definitely not up to use full time. When ever I reboot my phone it deletes my Hotmail account, it doesn't notify properly, has no push for Gmail, can't format html into mobile view effectively & has a poor gui. Very expensive for why it does.
I have tried K9 before & unless it's been updated recently there isn't an option to resize an email so that the while mail is displayed at once is there?
Click to expand...
Click to collapse
What do you mean resize your email? You can pinch to zoom in it though, I used it a week or so ago
Sent from my DROID2 using xda premium
gagdude said:
What do you mean resize your email? You can pinch to zoom in it though, I used it a week or so ago
Sent from my DROID2 using xda premium
Click to expand...
Click to collapse
Yes, you can pinch to zoom but I'd like to display the whole email on screen at once & then decide which part of the email I'd like to zoom into (if any). K9 & most other Android clients don't allow this. The only app that I've found that can do this at all is the official Hotmail app but the rest of the app is so basic its shocking. It doesn't allow you to always show images & on my current phone its a 3 click process to show images (in every mail you view). It also truncates all mails to a maximum of 100kb do anything over this takes a further 3 clicks to display properly. Very poor.
Try Aquamail. I absolutely love it, and it has all these features. Their mobile view is the main reason I use it. Make sure you pick up the latest beta version 4 here: www.aqua-mail.com/?page_id=217
The mobile view used to be incorporated into the appstore version. The developer took it out temporarily, and it is only in the latest beta.

[APP] android 4.4 email (not gmail)

Sorry it took so long, I just never use the email app... but here is this is the Android 4.4 Email app (not the Gmail app)
Requirements:
Make a BACKUP!
File name: EmailGoogle.apk
Version: 6.0-893803
For exchange functionality use the second link
Email LINK
Exchange LINK
any screenies and reviews? how does the exchange part work compared to 3rd party apps?
would love something like a combined view of all folders that i sync, like how it's done in Enhanced Email (which is very poorly maintained recently)
edit: ah, found a review, and not very convincing one to make the change, bah
The interface has been given a full update to make it look very, very similar to the updated Gmail. You'll get the same white Holo interface, the same icon and action bar, and the same slide-out menu, plus the swipe gestures for refreshing and deleting mail. Unfortunately the core functionality hasn't changed that much - you're still limited to the basic POP/IMAP/Exchange setups, with the same nearly universal settings and options.
Click to expand...
Click to collapse

Categories

Resources