Port some functions from Cyanogen - Miscellaneous Android Development

Hi.
Sorry if I'm posting something wrong / old or already answered, but I don't find anything about my situation.
I have a Xperia X8 with custom ROM, GingerDX. Now I'm moving to a new phone, and it don't have any type of custom rom, Cyanogen support, or even a device near to it, to try porting a ROM.
Following this guide, I cook a ROM to suit my needs.
But, obviously, some nice features from GingerDX/Cyanogen are missing. I don't wanna go to ICS, I just wanna some features and a very clean and small ROM.
So, I'm asking where I can get information about porting (or create) specific features from GingerDX/Cyanogen to my device. Not a full ROM, only some of these features are:
Fast copy and paste
Keyboard lights control
Number of apps in recent list
Long press menu to open a search
Long press back to kill an app
Music control even with phone locked (next song / previous song by holding volume keys)
Shutdown menu (restart, recovery, etc)
Notification power widget
Clock to show 00:00 instead 00h00 (is a 'h' in the middle)
Contacts to show format number 0000-0000 instead 00-000-000
Compact carrier label
Center clock on lockscreen
Notification focus
Music volume not attenuated by notifications
And some others I don't remember. I know, will be a hard job, but I'm not affraid to learn. If I made my own custom ROM, I beliave I can install these features... I just must have a start point, and some sugestions from devs to do this (i.e: remove unnecessary resources like languages, images inside apks, HDPI and LDPI images and codes). Maybe if you point this for me, other users can use the same to install these features on their phones without Cyanogen support.
Or another strategy to make a good custom ROM, even without Cyanogen offical support...
Thanks a lot!!

Nobody??

Related

Suggestions for custom rom makers/stock rom mods.

Hello everyone,
As it seems that I really like writing a lot (in English especially) and writing guides (my job requires a lot of standards), I thought of creating a guide for devs/custom rom makers/stock rom modifiers.
This guide is not something that I want to impose, these are just suggestions and I will also include some known issues around here. So, let's begin.
1. Bootanimation
This can be selected as you wish. Any bootanimation other than the standard one should be fine. Or, if you want, you can provide more animations and a short guide on how to change bootanimation.zip and where.
2. Lock Screen
Removing the HTC Lockscreen will lead to the default android Gingerbread one. Now this one's buggy. Like hell. For example, pull the right slider (the one with the sound control) to change the profile to vibrations. Now you can see that the slider is hanging from the top, pointing to bottom (can be fixed with a phone restart).
Example:
3. Missing caller screen when phone is locked
If you have the default lockscreen you will notice that there is no incoming call screen displayed when the phone is locked (that or I removed too much stuff). Keep this in mind.
4. Icons/Notifications
Even though the default Gingercroissant (too much bread) looks black, if you pull the status bar (taskbar) you will notice that it turns back to white-grey (the default HTC Sense/ChaCha) one. Keep this in mind when adding icons/notifications. (picking white icons will render them barely visible)
5. Applications
Most devs/modders prefer to add their most liked applications and integrate them into the ROM (so that you cannot uninstall them from Settings -> Applications -> Manage Applications) which kinda sucks since not everyone uses/likes the same stuff (it's called "taste"). Basically I am suggestion to add only SuperUser and let the users install their own apps (Titanium, Messenger, GPS, etc.). For example I have my own Titanium Backup.apk (it's personalized) which I want to install - cannot be installed if Titanium is already present though.
6. Google Sync
Some of us like to have the Google account synchronized with the GMail server and I would suggest leaving the Google Contacts Sync and Calendar Sync in the rom (they can be removed later). It's easier to remove than to search the internet and add them separately.
7. Bloatware
News, Weather, Mirror, Stocks, News&Weather (Yes, 3 different applications for the same stuff), HTC Likes, HTC Hub, Downloads, Facebook, Peep, Tweeter, GTalk.. There are more, of course (for example I have also removed Live wallpaper stuff since I don't use Live wallpapers, skin picker, skin scanner, profile widget, ringtone widget, and more) and it should be taken into consideration this question: how much is really enough?
8. Link2SD and ext-partitions
Well, since custom roms do allow the use of ext and Link2SD I suggest using them as much as possible.
I do hope that this could help some of you (or mocked by others) but any feedback is welcomed.
Excellent suggestions! I'd also like to keep the HTC Sense widgets, as I find them quite useful. HTC Likes & HTC Hub can be removed, as they don't provide much use. Cheers.
Applications bundled with a rom can still be easily uninstalled, provided that the rom maker knows how to, and puts the apks inside an /data folder. Mounting and extraction is similar to that of the /system partition. The profit of this is the uninstallability (nice word, huh?) Of the added apks, the downside is of course that a data wipe will remove these applications. Ideal would be a /system rom base update.zip, and an applications.zip containing all the added applications the developer likes, to be extracted into /data. Just sharing my thoughts..
Alex C. said:
2. Lock Screen
Removing the HTC Lockscreen will lead to the default android Gingerbread one. Now this one's buggy. Like hell. For example, pull the right slider (the one with the sound control) to change the profile to vibrations. Now you can see that the slider is hanging from the top, pointing to bottom (can be fixed with a phone restart).
Example:
3. Missing caller screen when phone is locked
If you have the default lockscreen you will notice that there is no incoming call screen displayed when the phone is locked (that or I removed too much stuff). Keep this in mind.
Click to expand...
Click to collapse
i have been customizing my rom based on the stock, but this was one of the irritating parts. finally, i have decided to use the original htclockscreen.
to change the icons in the lockscreen, you don't need to have rosie installed. all you need is simply to add setting.xml in /data/data/com.htc.lockscreen/shared_prefs. (i did it in init.d)
the format of setting.xml is as follow:
Code:
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<boolean name="customized" value="true" />
<string name="shortcut1">#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;component=com.android.htcdialer/.Dialer;end</string>
<string name="shortcut2">#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;component=com.google.android.gm/.ConversationListActivityGmail;end</string>
<string name="shortcut3">#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;component=com.android.camera/.CameraEntry;end</string>
<string name="shortcut4">#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;component=com.handcent.nextsms/com.handcent.sms.ui.ConversationExList;end</string>
</map>
qtotter said:
i have been customizing my rom based on the stock, but this was one of the irritating parts. finally, i have decided to use the original htclockscreen.
Click to expand...
Click to collapse
You mean Stock lock screen on CWM???, can you shows us how?
regarding your chacha rom
ajeevlal said:
You mean Stock lock screen on CWM???, can you shows us how?
Click to expand...
Click to collapse
hi ajeev, i am sorry i am posting this here... but i really need your help in fixing some problems with ZaSa_4chacha_GB1.57_v2.0... i am currently using it... the best rom... but i am having some issues i wanted to report....
1. Power off is not working properly
2. if charging turned off phone, then the phone gets stuck and needs to remove battery to start.
3. my '@' sign has been moved to '~' button and dollar has changed to pound
i tried to fix keyboard layout issue but couldnt get my CID to match the ones stated in other posts
in any case i am loving the rom thank you
jd_dpgc said:
1. Power off is not working properly
2. if charging turned off phone, then the phone gets stuck and needs to remove battery to start.
3. my '@' sign has been moved to '~' button and dollar has changed to pound
Click to expand...
Click to collapse
What do you mean by 1. ?
For 2. get the latest CWM, it's a recovery issue and has been fixed.
rom makers should not remove Gtalk, It is Incredibly hard to restore it once removed. and all just to save a few KB of space...
jd_dpgc said:
1. Power off is not working properly
2. if charging turned off phone, then the phone gets stuck and needs to remove battery to start.
3. my '@' sign has been moved to '~' button and dollar has changed to pound
i tried to fix keyboard layout issue but couldnt get my CID to match the ones stated in other posts
Click to expand...
Click to collapse
Thanks for trying my custom rom.....
1) what do you mean by this? does your power off button not showing the power options? if yes, you need to press and hold the button for 2 to 3 sec for the power option menu to show up
2) As alex stated, you need to flash the latest CWM recovery
3) what CID you have? what did you changed.
And did anyone know how to move this post to the original ZASA thread?
I've done the same thing you are doing over here and, beside Link2SD removing the Sense UI and things, i've removed even the default E-Mail client, News, Meteo, HTC Clock Widget, Facebook, Peep, Latitude, Messages Widget, Inform HTC, Meteo Widget, Music Widget, HTC Sense, Street View, Home Suggestions, HtcTrendsWidget, Photo Widget, Meteo Sync Provider for HTC, Ringtone Widget, Animated Wallpaper Selector, Sense Plugin Manager, HTC Meteo Wallpaper, HTC HubSync Provider, HTC Report Agent, HTC CheckIn Service.
Instead i've installed:
Kingsoft Office
Facebook for Android (From the PlayStore)
GoLauncher EX (i had an unlock bug, but i still see the volume button as you; i will change the lockscreen)
K-9 Mail
GoClock Widget
Quadrant Standar
* Winamp
Link2SD
Battery Indicator
Terminal Emulator (thinking about change it)
SuperUser
---------
*Thinking about removing "Music"
The reason for doing this is as simple as "You don't use it, you don't need it" and battery life ( IMPROVED! ).
---------
I'm having problems with the fB button, but i will fix it with the .apk that let's you choose what for to use it. I don't really need a fB button. Trying to make it sync the mails atm.
BTW, it was pretty hard to get it rooted and CWM installed. But i've done it!
If anyone needs help, pm me.
p.s. Keep the stock ROM, it's way better than everything atm.
p.s.s. i've used for work for 2 days so far and it's doing his job very well. F* BB&WP7 )
ajeevlal said:
Thanks for trying my custom rom.....
1) what do you mean by this? does your power off button not showing the power options? if yes, you need to press and hold the button for 2 to 3 sec for the power option menu to show up
2) As alex stated, you need to flash the latest CWM recovery
3) what CID you have? what did you changed.
And did anyone know how to move this post to the original ZASA thread?
Click to expand...
Click to collapse
Hey
1. When I power off and put on charging ... Phone starts up automatically with HTC report notification that something went wrong...
2.I am updated with latest cwm. Temp work around was to use Rom manager and directly reboot recovery
3. I got my keylayout fixed. See this post ...... http://forum.xda-developers.com/showthread.php?t=1496730
Yeah I don't know If we can move the post to original thread coz at that time I was restricted to wait for 10 posts policy lol to comment in a development thread

[Q] Lockscreen Music Controls? And a couple of other questions...

1. Maybe I'm just missing an easy setting but I cannot seem to get music controls (using Google Play Music app...but also tried default Music [Samsung] app) on the lockscreen. Anytime I want to pause / change the song I have to unlock the device and then perform the action. Suggestions?
2. Also, I came from an Acer Iconia A100 tablet and with that device, I could select the open apps icon on the toolbar (right of the home icon) and this would display open apps...I could swipe the app to the left and the app would close. This doesn't seem to happen on the Tab Plus, is this just a feature in ICS that is not supported in 3.2?
3. Quicklaunch ^ button in the center of the toolbar...any way to get rid of this or at least change the icons that display when I select it?
4. Any way to get rid of the extra button right of the open apps button on the toolbar? They offer you different options (camera, app launcher, screen shot) in settings but I would prefer the button really not be there period.
Overall, I love the hardware...I just wish Samsung would offer a generic ICS rom as their proprietary stuff either looks bad or just gets in the way. The one proprietary thing I've found I do like is the ability to enable mono audio (if you listen to music with one earphone)...first time I've encountered that (be it from a company or just something hacked together by an individual) and I'll be sad to part with that option should we ever get a generic ICS rom.
1.) Im not sure, as I dont use said APP
2.) ICS Feature
3.) cant' get rid of it. you can use honeybar to hide entire status bar, or make the icon for the ^ invisible/blank. You cant edit/change any apps, but you could delete the mini.apks individually and they will no longer show up. ( you could remove it if you are proficient in google's assembler language .smali)
4.) no chance in removing the button. Its hard coded in. (unless your fluent in .smali, etc.)
Overall, I'd agree I think most of us would like a "Vanilla" Ice cream Sandwich, but instead we will likely get this TouchWiz junk. they should at least make options to turn most of it off.
My best advice: donate/support to the guys porting CM9. Right now I think its only @aorth for the GT-P6200/
Lets hope for the best.
Thank you for the reply.
1. Do you use another music app that does offer lockscreen controls?
i do not personally, but I believe there are a few.
I also am fairly sure there are sne lockscreen replacements with his and additional options.

[Release] SuperOS Rom Customized Updated to V2

[UPDATED] V2 - Read new Changes Further Down :
Before I start I don't take ANY credit for making this rom, this rom is made by the SuperOS team, ALL credits go to them. I have changed nothing on the rom itself, other than made some nice customization on the UI and added in some nice useful apps.
V1.0
Default Apps that come with rom :
Calculator
Calendar
Camera
Car Home
Clock
Contacts
Downloads
DSP Manager
Email
FM Radio
Gallery
Gmail
Google Search
GooManager
Latitude
Maps
Messaging
Navigation
Phone
Places
PlayStore
Settings
Sound Recorder
Spare Parts
SupSetup
Talk
Terminal Emulator
Theme Chooser
Torch
Videos
Voice Dialer
Voice Search
Wireless Tether
Youtube
Apps Added by me :
Adobe Reader
Advanced Task Killer
ADW Launcher
App2SD Pro
Autosync - Onoff
Beautiful Widgets
Beautiful Widget Animations
Documents 2 go pro
DX Battery Booster
ES F Explorer
Facebook
Go SmS Pro
Opera Mini
Mx Video Player+Codecs
Super User
Whatsapp
Wifi-Onoff
Free Space 81.1MB Internal Memory.
Changes made to the rom :
Changed UI to ADW Launcher ( the default launcher was crap, and also only allowed you to use only 3 rows of the deskspace for icons )
Removed Dockbar, screen is small enough and dockbar space is wasted.
Limited the screens to 2, can add more via the ADW Launcher settings.
Added some usefull apps ( see list above )
Added the Evil Eye Wallpaper ( there is additional wallpapers available )
Added the Beautiful Clock/weather Widget on homescreen
Launcher Icon is on bottom right of homescreen to enter menu.
DX battery manager is installed to manage power consumption
Advanced Taskkiller is loaded to kill any open apps when needed.
All Installed apps have been moved to SD with App2SD pro
V2.0 Changes :
Added Rom Toolbox. Now user has full control over his rom.
Changed to better looking Boot Animation
Changed Read Cache for SDcard from 128kb to 1024kb
Set CPU speed to On Demand with min/max CPU to 245mhz/800mhz.
Set Default install path for new apps to SDCard
Increased free space to 82.62mb
free space now 82.62mb
UI in general is now customized to provide maximum Desktop space and removed that damn stupid dockbar. You can still make use of all needed features, status bar is still on top in its default location, you can access menu from the Launcher icon in bottom right of homescreen. Phonebook/dialer can still be accessed by pressing the Phone button as normal.
Screenshots are attached below.
Download CLICK HERE TO DOWNLOAD ROM V2
Filesize = +/- 180MB
Install ( Must have bootloader unlocked/Root/recovery installed !!! Click Here for Guide if you need to unlock/root ) Works with both S-on/S-off:
Install is Simple :
Extract the folder "2012-05-07.23.09.47" to your SD Card->Clockworkmod->backup (keep the folder name and structure as is, dont change anything !)
Pull out your battery and reinsert it.
Boot phone into bootloader ( hold volume down and press power button ).
Choose "recovery"
Clear ALL cache ( Cache partition, Dalvik Cache and Battery stats )
Select backup/restore, then select restore
Choose "2012-05-07.23.09.47"
once restore is done, reboot phone
Once Booted up into Os, link your Google, Facebook and whatsapp accounts ( settings->accounts & Sync.)
Change weather location. ( just click on the sun/moon on desktop to edit weather location )
Change Time/Date to current. ( just click on the clock on desktop to edit time/date )
You are done
Click to expand...
Click to collapse
I made this for anyone who uses most of the same apps and stuff and dont care for the stupid side/dockbar and who don't know or dont want to hassle going thru all the crap to get the rom customized to the point where its actualy user friendly. You can now make FULL use of all your desktop space, you can add extra desktops and with all the most popular apps already installed you still have some memory free to install more.
Enjoy ....
Nice
One question, isn't SuperUser Elite a payed app?
no idea really. i just loaded from my backup apps folder, i hope not...
ext4 partition support?
Hi,
How can i use my ext4 partition on your rom which has formatted a partition program by windows based.
PS. i have never used this EXT4 partition..
i have tried CM and SuperOSR but,
internal seeing always 150mb in total.
If someone describe me using ext4 partitions step by step, i will be greateful
Sounds like you have partition issues, You are asking in the wrong section. This is a rom release, not a partition repair thread.
its good bro but not impressed, u just add few more apps to Rom n release it with very less internal memory..if u really would like to do with this ROM then configure front camera n release it or do some necessary changes for better experience..these application r easily available in market..everybody can add more application & release it with SuperOSR version 3 or 4...please don't copy someone's effort...
ROM is Already gud in itself...
O please, firstly i have taken no credit, neither did i say i changed anything on the rom. Secondly all roms are based on other roms, so everyone is taking stuff from everyone else. PLEASE READ BEFORE YOU POST.
Thirdly, this release is a UI customisation change, not a new rom release. the current superos has a UI that I don't like, all the icons are badly sitting awkwardly on the right hand side, the left column of the screen cant even be used. the dockbar is wasting valueble space and with such a small screen, very few people can click the dock buttons properly. the problem is that they didnt design the rom specificly for just the chacha but for more than one device and as such never took the time to sit with a single device and fix the little things, and If they dont want to fix the UI then why shouldnt i ?
Fourthly, you are right, i didn't have to add the apps, but these are apps most people will use and load anyway so why not just add them into the rom ?
raymerjacque said:
Secondly all roms are based on other roms, so everyone is taking stuff from everyone else.
Click to expand...
Click to collapse
That's why it's called open source.
Btw, munishjoshi, most ROMs are based on AOSP, which is Android Open Source Project, that has about 2000 people around the world working/have worked/will work on it and you don't see any credits to any of them.
Alex C. said:
That's why it's called open source.
Btw, munishjoshi, most ROMs are based on AOSP, which is Android Open Source Project, that has about 2000 people around the world working/have worked/will work on it and you don't see any credits to any of them.
Click to expand...
Click to collapse
my intention was not to steal thunder from anyone. Its just so bloody annoying that everytime i flash superos i must keep fixing the UI and reload all these apps and there must be others out there that feel the same way, this is reason i posted this. if no one has any use for it ill remove it and let everyone be happy...
I am already working on a release of a stripped down Stock Sense rom. and on that rom i am actualy editing the rom itself, not just the UI. Altho it will be a while before its done.
hey don't take it otherwise bro...i just would like to say that do something new...waiting for your further updates...
Apart from the UI there is nothing else to do on this rom. the rom is perfect as it is. just the UI needed adjustment.
Wait for my new rom if you want to see major changes ...
munishjoshi said:
its good bro but not impressed, u just add few more apps to Rom n release it with very less internal memory..if u really would like to do with this ROM then configure front camera n release it or do some necessary changes for better experience..these application r easily available in market..everybody can add more application & release it with SuperOSR version 3 or 4...please don't copy someone's effort...
ROM is Already gud in itself...
Click to expand...
Click to collapse
Please adhere to the old addage "If you don't have anything nice to say, don't say it". Customization is why we all come to xda, either enjoy what is freely given to you, or do it yourself.
raymerjacque said:
O please, firstly i have taken no credit, neither did i say i changed anything on the rom. Secondly all roms are based on other roms, so everyone is taking stuff from everyone else. PLEASE READ BEFORE YOU POST SH!T.
Thirdly, this release is a UI customisation change, not a new rom release. the current superos has a really ****ty UI, all the icons are badly sitting awkwardly on the right hand side, the left column of the screen cant even be used. the dockbar is wasting valueble space and with such a small screen, very few people can click the dock buttons properly. the problem is that they didnt design the rom specificly for just the chacha but for more than one device and as such never took the time to sit with a single device and fix the little things, and If they dont want to fix the UI then why shouldnt i ?
Fourthly, you are right, i didn't have to add the apps, but these are apps most people will use and load anyway so why not just add them into the rom ?
Fifthly, go Frakk off and go troll somewhere else
Click to expand...
Click to collapse
Your language and tone are unneeded, but your message is fine. I edit your posts so you can see how to get your point accross without cursing. Please look.
Can we all try to get along?
Let's have this battle end here and now, and move on.
Thank you all.
Ok boss...thanks
Keep on the good work.. nice to see more people are devolping and customizing for the chacha..
does this rom fix wifi issues and front camera?
nope. i did not make any fixes to the rom itself, i just customized the UI to be more user friendly and edited some cache settings and stuff.
raymerjacque said:
the problem is that they didnt design the rom specificly for just the chacha but for more than one device and as such never took the time to sit with a single device and fix the little things, and If they dont want to fix the UI then why shouldnt i ?
Fourthly, you are right, i didn't have to add the apps, but these are apps most people will use and load anyway so why not just add them into the rom ?
Click to expand...
Click to collapse
True, SuperOSR wasn't designed especifically for the Chacha. We focused our effort on making it work. What is a great thing of OpenSource is that people can help and join to the effort. In that case, if you fixed the UI as you say you did, do not hesitate to send your modification so they can benefit everyone.
Now, if by fixing the UI you mean you replaced Launcher with ADW, then IMHO you didn't "fix" it.
Changes made to the rom :
Changed UI to ADW Launcher ( the default launcher was crap, and also only allowed you to use only 3 rows of the deskspace for icons )
Removed Dockbar, screen is small enough and dockbar space is wasted.
Limited the screens to 2, can add more via the ADW Launcher settings.
Click to expand...
Click to collapse
adlx.xda said:
True, SuperOSR wasn't designed especifically for the Chacha. We focused our effort on making it work. What is a great thing of OpenSource is that people can help and join to the effort. In that case, if you fixed the UI as you say you did, do not hesitate to send your modification so they can benefit everyone.
Now, if by fixing the UI you mean you replaced Launcher with ADW, then IMHO you didn't "fix" it.
Click to expand...
Click to collapse
lol, sorry wrong choice of words, i didn't mean fix as in it was broke. i just meant it wasnt very user friendly and customised it to be more so.
hey guys can you help me
i tryed to install the oem rom ruu to my status
but when it gets to the image it says lost of connection
igot the rom file with the instructions from one of the guys here
thank you by the way
change the name to ph06img.zip
got recognize by the device all good
after the blue line is done and the yellow one too
nothing happens
i cant reinstall the oem rom to my status
i dont know what to do now
i need to get it back to oem
thanks for any help
have you looked at this thread :
http://forum.xda-developers.com/showthread.php?t=1631121
try that, it will help you restore stock rom, specialy when your rom is faulty.

[Q] A few questions

Hi all
I have removed the xposed framework and gravity box from my Nexus 5 as I have switched to the ART runtime as I was fed up with poor battery life.
A few key features I am really missing.
Status bar brightness change (like CM)
Advanced volume control where when you push the hardware volume keys you get the media slider too
Volume key hold down to skip track with display off
Quick settings from dragging on right side of status bar (not silly two finger Kk style)
Battery percentage number always displayed
Resizing the horrendsly massive navigation bar which takes all screen space up
There were more things but those were the main...
My Nexus 5 is rooted and unlocked. I don't mind if I have to use adb to do some of the above or flash etc. I'd like to stick to the standard ROM. I'd also not like to install a million third party apps which also require resources and permissions...
Any suggestions? Does Android L improve on the above?
Thanks very much
Laurence
These are custom features. Xposed was the easiest way to get them. Finding a custom ROM is the other way.
Either Xposed or a Custom ROM. Xposed won't work with ART.
I know that's the problem . I wanted to keep stock but there is just far too many lacking features - come on Google give the advanced users a few more options - even if you hide it away...
I'll have to flash the Cyanogenmod ROM. I see that they have the M8 (4.4.4 ) version of CM 11 which is which I think has all the features I need and more. Maybe a good thing anyway!
I think Android L has a few problems reading up on it for now... I know it is a developer preview anyway.
Thanks
Laurence

[Completed] Transition Jailbroken Iphone4 to Anrdoid: Which device if I need this SW Features:

Dear reader, I want to make the transition from IOS to Android and I have detailed requirements to the software and hardware of my new Smartphone maybe you can give me your opinion on one or more of this topics:
So basically I want to buy the smartphone which fits the requirements the most. The importance is descend.
I do not care about the price nor the size of the Device.
1. I want to use the Device and the operations System Version as long as possible and if possible set up everything once and then only update Apps if I have to. And do not update the OS because this means all my Xposed Tweaks are gone and there is maybe no version out for the new OS.
For my Iphone I manageed it to use IOS 5.1.1 for up to three years.
2. I want to be able to customize my Statusbar, Lockscreen, physical Buttons on the phone, Notifications ...
I am so used to the following features:
2.1 - In Android world you would call this: Xposed Module Repository -> Physical Button Music Control
2.2 - I need a method that the phone is silent ( no vibration too ) and only wakes up the screen if an email, whatsapp arrives, BUT all calls ( unknown, in contact list, supressed number ) will vibrate or only wake display or vibrate and ring. At least the options for the calls should be easy accessible and I need an icon in the Statusbar that tells me something like: Warning you phone will not vibrate/sound if somebody calls you.
2.3 I want to have the Day,Date in the statusbar eg. "Mo23.02"
2.4 I need reminders that will stay on the Lockscreen
2.5 I need if I get notifications like a new mail, whatsapp message, or facebook message, that this message will be displayed with a preview on the lockscreen and stay on the lockscreen until it is marked as read ( In IOS they without Jailbreak Tweak they dissapear after the first unlock )
2.6 I need that my calender events are shown on the lockscreen
3 Genreally I want a clear structured layout, no fancy animations but to be able to customize behavior of the phone as much as possible. I do not need the newest autofocus, fingerprint technical gadet stuff, but the phone should be as fast as possible. I need it to enhance my productivity in daily life and want to set it up once and use it as long as possible without reconfig it
4 So does this mean go to CM or are there Stock ROMS who can be customized with Xposed Framework very good.
Which Phone in the High End sector can you recommend? Which one is famous for supporting CM or XposedFramework on stock very good ?
customTweak said:
Dear reader, I want to make the transition from IOS to Android and I have detailed requirements to the software and hardware of my new Smartphone maybe you can give me your opinion on one or more of this topics:
So basically I want to buy the smartphone which fits the requirements the most. The importance is descend.
I do not care about the price nor the size of the Device.
1. I want to use the Device and the operations System Version as long as possible and if possible set up everything once and then only update Apps if I have to. And do not update the OS because this means all my Xposed Tweaks are gone and there is maybe no version out for the new OS.
For my Iphone I manageed it to use IOS 5.1.1 for up to three years.
2. I want to be able to customize my Statusbar, Lockscreen, physical Buttons on the phone, Notifications ...
I am so used to the following features:
2.1 - In Android world you would call this: Xposed Module Repository -> Physical Button Music Control
2.2 - I need a method that the phone is silent ( no vibration too ) and only wakes up the screen if an email, whatsapp arrives, BUT all calls ( unknown, in contact list, supressed number ) will vibrate or only wake display or vibrate and ring. At least the options for the calls should be easy accessible and I need an icon in the Statusbar that tells me something like: Warning you phone will not vibrate/sound if somebody calls you.
2.3 I want to have the Day,Date in the statusbar eg. "Mo23.02"
2.4 I need reminders that will stay on the Lockscreen
2.5 I need if I get notifications like a new mail, whatsapp message, or facebook message, that this message will be displayed with a preview on the lockscreen and stay on the lockscreen until it is marked as read ( In IOS they without Jailbreak Tweak they dissapear after the first unlock )
2.6 I need that my calender events are shown on the lockscreen
3 Genreally I want a clear structured layout, no fancy animations but to be able to customize behavior of the phone as much as possible. I do not need the newest autofocus, fingerprint technical gadet stuff, but the phone should be as fast as possible. I need it to enhance my productivity in daily life and want to set it up once and use it as long as possible without reconfig it
4 So does this mean go to CM or are there Stock ROMS who can be customized with Xposed Framework very good.
Which Phone in the High End sector can you recommend? Which one is famous for supporting CM or XposedFramework on stock very good ?
Click to expand...
Click to collapse
Hello,
Try posting your query here Device suggestion thread with all relevant details, the experts there maybe able to assist you.
-Vatsal

Categories

Resources