Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
Tquetski
Old
#21  
Tquetski's Avatar
Senior Member - OP
Thanks Meter 876
Posts: 491
Join Date: Nov 2012
Quote:
Originally Posted by UserDemos View Post
What's MIUI based on? CM10? Just curious...

Isn't MIUI V5 due out March 1st? Will you be able to to simply add merge code like CM does currently for future releases?

Also, as someone hesitant to switch to anything other than stock (which is so functional)...how does MIUI incorporate Google Apps?
The same as CM10, the thing is that the look & feel of MIUI is completely distinct like Sense or TW, so a lot of people use it for the style of it, like an iOS type thing, plus it does have a lot of nice poweruser options.

That being said, I may have to start from scratch with a different base because although this rom is somewhat stable, the few bugs it has are very obnoxious, the phone call issue is annoying, and on my native phone which actually seems similar to yours for MIUI ports (lol), It has broken GPS which I assume will carry over.

MIUIv5 core code will be open source, so I think it's possible you'll be able to source build it, and if this is the case I can make a very spectacular rom for this phone.

For now I'm stuck trying to port, the build posted is not really functional as a phone but more as a fun toy so people can see what all the fuss is about, although I do hope to make it fully functional in the near future.
If you like MIUI check out my development blog!
Galaxy SII
-MIUIv5 PatchRom Weekly
Galaxy Exhibit 4g
-MIUIv4
-MIUIv5
props to i8150 porters and also LeeBlitz
The Following User Says Thank You to Tquetski For This Useful Post: [ Click to Expand ]
 
jafterdark
Old
#22  
jafterdark's Avatar
Senior Member
Thanks Meter 242
Posts: 163
Join Date: Feb 2010
Location: WI

 
DONATE TO ME
Default Re: [Rom]MIUI 3.2.8 XT925 ALPHA

Hey I got this to boot on the 926 I know this ROM is not meant, I get an error saying unauthorized

Sent from my DROID RAZR HD using xda premium
The Following User Says Thank You to jafterdark For This Useful Post: [ Click to Expand ]
 
bytethegroove
Old
#23  
bytethegroove's Avatar
Senior Member
Thanks Meter 131
Posts: 270
Join Date: Dec 2008
Location: Berwyn, IL
Tquetski.,
anyway you can make a miui v5 patchrom build....built off a verizon firmware?
Id be happy to host it on my website.

Ill keep trying myself, but my linux knowledge is minimal, and I keep failing.
thanks
peace
byte

I should mention I have a pretty bad arse V5 BuuF theme, i started in the photon thread, just picked up my xt926 and eagirly awaiting a MIUI v5
I'm as honest as the day is long, The longer the daylight then less I do wrong!

Byte's Theme Thread: http://forum.xda-developers.com/show...2#post25964222
My MIUI v4 ICS photon/electrify offerings http://bytethegroove.com/PublicDL/
Buuf Rom Miuiv4_2.4.27 with Buuf Aroma
Buuf V2.6 MiuiV4 Theme <----------> Weezy MiuiV4 Theme
 
bytethegroove
Old
#24  
bytethegroove's Avatar
Senior Member
Thanks Meter 131
Posts: 270
Join Date: Dec 2008
Location: Berwyn, IL
are there any active devs working on miui V5?
imam start reading on porting (don't expect anything, but I cant just sit here and wait without trying)and perhaps give a shout out to th3bill, who was maintaining the port for the photon.maybe he can point me in the right direction
peace
byte
I'm as honest as the day is long, The longer the daylight then less I do wrong!

Byte's Theme Thread: http://forum.xda-developers.com/show...2#post25964222
My MIUI v4 ICS photon/electrify offerings http://bytethegroove.com/PublicDL/
Buuf Rom Miuiv4_2.4.27 with Buuf Aroma
Buuf V2.6 MiuiV4 Theme <----------> Weezy MiuiV4 Theme
 
Tquetski
Old
#25  
Tquetski's Avatar
Senior Member - OP
Thanks Meter 876
Posts: 491
Join Date: Nov 2012
There are three ways you can do a PatchRom build, By 'scratch building' the proper resources by hand via decompiles, by doing an ADB pull on your phones stock rom to obtain target files and by just building if the phone is supported by MIUI which this one is not.

So it really only leaves one option.

Make sure your Linux Build-env is set up correctly

mkdir patchrom

cd patchrom

repo init -u git://github.com/MiCode/patchrom.git -b jb

repo sync

This will pull all the needed Jellybean files from MiCode Repo

the next part is a bit more obnoxious, make sure your phone is connected and make sure ADB is in proper working order..

open a terminal in your main Patchrom folder, and:

source build/envsetup.sh

mkdir razrhd

cd razrhd

adb reboot recovery

Your phone will now begin booting into recovery, let it do it's thing, when recovery has loaded run the following commands in terminal

../tools/releasetools/ota_target_from_phone -r

It will begin dumping everything PatchRom needs from your phone, resulting in a StockRom.zip, you can flash it to make sure everything is in working order or not; it really does not matter

Run the following command

cp ../i9100/makefile .

This will copy the i9100s Makefile over to the working folder, which will need to be modified to suit the phone and the stock-specific APKs, etc.

Once this is done run

make workspace

make firstpatch

make fullota

And PatchRom will begin to build, being an unsupported phone expect to see errors in your life here & there, If a FullOTA.zip is created in the Out folder of 'razrhd' then you have successfully patched Stock, If there are errors they will need to be resolved before Stock can be built.
If you like MIUI check out my development blog!
Galaxy SII
-MIUIv5 PatchRom Weekly
Galaxy Exhibit 4g
-MIUIv4
-MIUIv5
props to i8150 porters and also LeeBlitz
 
Tquetski
Old
(Last edited by Tquetski; 30th April 2013 at 07:26 AM.)
#26  
Tquetski's Avatar
Senior Member - OP
Thanks Meter 876
Posts: 491
Join Date: Nov 2012
By the way all of the commands I've listed are case-sensitive and must be followed verbatim for the most part, regretfully I do not have the RazrHD's target files from stock so I can't do this myself; manual decompile is too much of a pain in my ass.

I know that uhm, It will be a little awkward since this is not the same as porting, but PatchRom yields results if you are tenacious enough for it
If you like MIUI check out my development blog!
Galaxy SII
-MIUIv5 PatchRom Weekly
Galaxy Exhibit 4g
-MIUIv4
-MIUIv5
props to i8150 porters and also LeeBlitz
 
Tinchoska
Old
#27  
Tinchoska's Avatar
Senior Member
Thanks Meter 54
Posts: 671
Join Date: Jul 2011
Location: Hudson, Buenos Aires
Quote:
Originally Posted by Tquetski View Post
By the way all of the commands I've listed are case-sensitive and must be followed verbatim for the most part, regretfully I do not have the RazrHD's target files from stock so I can't do this myself; manual decompile is too much of a pain in my ass.

I know that uhm, It will be a little awkward since this is not the same as porting, but PatchRom yields results if you are tenacious enough for it
is this Rom still on development?
SKA RULES


Mobile Phone: Razr HD XT925 Argentina Tierra Del Fuego
ROM: Personal JB Stock
Kernel: Default
Radio: Default
Recovery: CWM

 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

report this ad
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...