MIUI Development ROMs


MarkHUK

Site Founder
Staff member
Nov 6, 2010
5,251
1,000,000
MIUI ROM 1.11.25 will be uploaded soon for all devices!, if your device is not listed it is still being compiled. Be patient and wait for the list to be completed.

Thanks,

MIUI Android Team

<?php

$current_rel = "1.12.2";

// Function to get files name is correct to our rom /pack
function check_files_name($file, $marker)
{
return strpos($file, $marker) === 0;
}
// EF

// Function to get device name from file name
function device_name($file)
{
$device = substr($file, 12, 33);
$device = substr($device, 0, -11);
return $device;
}

// Function to get device name from file name
function device_name2($file)
{
$device = substr($file, 18, 33);
$device = substr($device, 0, -10);
return $device;
}


// ROM
if ( ($handle = opendir('/home/miuiandroid/public_html/rom-dev/output/')) )
{
// Start table
echo '<table border="0" cellspacing="0" cellpadding="0" width="580">
<tbody>';

while( false !== ($file = readdir($handle)) )
{
if(check_files_name($file, 'miuiandroid'))
{
// Loop table for devices
echo '<tr>
<td><img src="http://miuiandroid.com/wp-content/uploads/'.device_name($file).'.png" width="115" height="201" /></td>
<td></td>
<td valign="top">';
echo '<h3>'.device_name($file).' '.$current_rel.'</h3>' . "\n";
echo '<span class="deodex"><a href="http://deodex.miuiandroid.com/miuiandroid_'.device_name($file).'-'.$current_rel.'.zip">Download ROM</a></span>';
echo 'ROM MD5: <span>'.md5_file("/home/miuiandroid/public_html/rom-dev/output/miuiandroid_".device_name($file)."-".$current_rel.".zip").'</span>';
echo '</td>
</tr>';
}
}
echo '</tbody>
</table>' . "\n";

// close directory
closedir($handle);
}

?>
<h2>Unofficial ports</h2>
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><img src="http://miuiandroid.com/wp-content/uploads/2011/04/desire-generic.png" alt="HTC Desire CDMA (Bravo)" width="115" height="201" /></td>
<td></td>
<td valign="top">
<h3>HTC Desire (CDMA Bravo) 1.7.8 &amp; 2.4.3a</h3>
Download: <a href="http://forums.miuiandroid.com/forumdisplay.php?23-HTC-Desire-CDMA" target="_blank">ROM</a>

MD5: (See forum link in above)

Credit:skuddy</td>
</tr>
<tr>
<td><img src="http://miuiandroid.com/wp-content/uploads/2011/04/usa-droid.png" alt="Motorola Droid" width="115" height="201" /></td>
<td></td>
<td valign="top">
<h3>Motorola Droid 1.8.12</h3>
Download: <a href="http://forums.miuiandroid.com/showthread.php?6600-ROM-MIUI-Developer-Build-1.8.12.0-Feature-PACKED" target="_blank">ROM</a>

MD5: (see link above)

CREDIT: TreyM (MIUI Android Staff)</td>
</tr>
<tr>
<td><img src="http://www.miuiandroid.com/wp-content/uploads/AcerLiquid.png" alt="Acer Liquid" width="115" height="201" /></td>
<td></td>
<td valign="top">
<h3>Acer Liquid 1.9.9</h3>
Download: <a href="http://forums.miuiandroid.com/showthread.php?7878-MIUI-1.9.9" target="_blank">http://forums.miuiandroid.com/showthread.php?7878-MIUI-1.9.9</a>

CREDIT: Lens_Flare</td>
</tr>
</tbody>
</table>