IUNI U3 stock ROMs / updating / scripts / sources - Android Q&A, Help & Troubleshooting

I bought a IUNI U3 recently and found two recoveries for the device. There is only these two builds.
I bought the device to try something new and I wanted to translate the IUNI OS ROM.
Problem is: The CWM recovery is non touch and has a bug which causes backups not to work. The TWRP is version 2.8.3 and me and a friend of mine managed to get rid of an overheating bug by adding
other default governors for the recovery (setting on demand instead of performance). Still I have some trouble with this recovery, but it is the only thing I got.
If I want to flash a ROM with it I get errors.
Code:
msm.boot_update("backup");
msm.boot_update("finalize");
in the updater script gives me a
Code:
line 108 col 26: unknown function "msm.boot_update"
line 109 col 28: unknown function "msm.boot_update"
2 parse errors
using TWRP while CWM flashes the ZIP without a problem.
If I remove
Code:
ui_print("Patching firmware images...");
package_extract_file("firmware-update/tz.mbn", "/dev/block/platform/msm_sdcc.1/by-name/tz");
package_extract_file("firmware-update/sbl1.mbn", "/dev/block/platform/msm_sdcc.1/by-name/sbl1");
package_extract_file("firmware-update/rpm.mbn", "/dev/block/platform/msm_sdcc.1/by-name/rpm");
package_extract_file("firmware-update/emmc_appsboot.mbn", "/dev/block/platform/msm_sdcc.1/by-name/aboot");
msm.boot_update("backup");
msm.boot_update("finalize");
package_extract_file("firmware-update/NON-HLOS.bin", "/dev/block/platform/msm_sdcc.1/by-name/modem");
package_extract_file("firmware-update/splash.bin", "/dev/block/platform/msm_sdcc.1/by-name/splash");
unmount("/system");
from the updater script (deleting the /firmware folder in the zip of course) TWRP flashes the ZIP without a problem like CWM does.
Is there a problem within the TWRP build or is this related to the updater binary?
Or is this command being processed correctly by the stock recovery only?
I am kind of a beginner and I wondered if someone could give me some advice so I do not have to remove the radio update.
Btw: the cooks of the mentioned recoveries are russians and I got no response until now. On 4PDA ru I can not register etc etc.

Regarding IUNI U3
Hello t-ryder,
I am sorry I cannot help you with that. I have IUNI U3 for 6 months now. I am sadly using Chinese CWM :crying: and I think I tried restoring backup once and was ok. I tried TWRP once when I bought it and it failed in installing update package so I returned back to chinese CWM.
I am currently stuck at ROM BetaV2.0 20150105. When I tried to update to Beta 3.0 It got stuck at IUNI logo because of problem with Xposed. The IUNIOS use Xposed in their ROM unofficially like MIUI did and they moved forward to blow the Xposed installation in new ROMs. Some OnePlus one users spotted Xposed working for IUNIOS Beta3 custom rom and I did not know how they did it, or may be it is broken for IUNI U3 only.
Can you tell me which ROM you installed and if Xposed is working? Which GApps you use?
The only source I found for IUNI U3 was the chinses official forums. Can you tell me if you found any other sources?
Thanks

t-ryder said:
If I want to flash a ROM with it I get errors.
Code:
msm.boot_update("backup");
msm.boot_update("finalize");
in the updater script gives me a
Code:
line 108 col 26: unknown function "msm.boot_update"
line 109 col 28: unknown function "msm.boot_update"
2 parse errors
using TWRP while CWM flashes the ZIP without a problem.
Click to expand...
Click to collapse
The updater-script is parsed by the update-binary (which communicates with the recovery only for UI updates), so it's hard to imagine why it would work in one recovery but not in the other.

Thanks for your reply.
Thought of something like that.
When I get a new build ready I am gonna try an older updater-binary.
I heard that some builds of TWRP have problems with newer updater-binaries for some devcies.

t-ryder said:
Thanks for your reply.
Thought of something like that.
When I get a new build ready I am gonna try an older updater-binary.
I heard that some builds of TWRP have problems with newer updater-binaries for some devcies.
Click to expand...
Click to collapse
Sounds like or the updater binary has no implementation of the msm.bootupdater function or maybe you need some binary of /bin folder that has this function.
You can decompress the boot image from recovery.img and compare to the CWM boot image if there is any missing binary that has this function.

prof_mastermind said:
Hello t-ryder,
I am sorry I cannot help you with that. I have IUNI U3 for 6 months now. I am sadly using Chinese CWM :crying: and I think I tried restoring backup once and was ok. I tried TWRP once when I bought it and it failed in installing update package so I returned back to chinese CWM.
I am currently stuck at ROM BetaV2.0 20150105. When I tried to update to Beta 3.0 It got stuck at IUNI logo because of problem with Xposed. The IUNIOS use Xposed in their ROM unofficially like MIUI did and they moved forward to blow the Xposed installation in new ROMs. Some OnePlus one users spotted Xposed working for IUNIOS Beta3 custom rom and I did not know how they did it, or may be it is broken for IUNI U3 only.
Can you tell me which ROM you installed and if Xposed is working? Which GApps you use?
The only source I found for IUNI U3 was the chinses official forums. Can you tell me if you found any other sources?
Thanks
Click to expand...
Click to collapse
On 4PDA ru there are some devs working on stuff for the U3. I have never used Xposed on the U3. Last stable build is b3.0.5 - b3.0.6 is so buggy, I wonder why the IUNI dev team even released that crap.
I managed to flash the b3.0.5 using TWRP changing the updater script removing the device check and the radio update.
delete (in updater script for b3.0.6)
Code:
getprop("ro.product.device") == "IUNI" || abort("This package is for \"IUNI\" devices; this is a \"" + getprop("ro.product.device") + "\".");
and
Code:
# ---- radio update tasks ----
ui_print("Patching firmware images...");
package_extract_file("firmware-update/tz.mbn", "/dev/block/platform/msm_sdcc.1/by-name/tz");
package_extract_file("firmware-update/sbl1.mbn", "/dev/block/platform/msm_sdcc.1/by-name/sbl1");
package_extract_file("firmware-update/rpm.mbn", "/dev/block/platform/msm_sdcc.1/by-name/rpm");
package_extract_file("firmware-update/emmc_appsboot.mbn", "/dev/block/platform/msm_sdcc.1/by-name/aboot");
msm.boot_update("backup");
msm.boot_update("finalize");
package_extract_file("firmware-update/NON-HLOS.bin", "/dev/block/platform/msm_sdcc.1/by-name/modem");
package_extract_file("firmware-update/splash.bin", "/dev/block/platform/msm_sdcc.1/by-name/splash");
unmount("/system");
Updating the radio once was enough (since I tried to translate the ROM and flashed the build over and over again to test).
Here is the thread on 4PDA ru - try reading using bing translator and if you want to dl something switch to original site view.
http://4pda.ru/forum/index.php?showtopic=598571
Me and my pal hellsgod edited the TWRP since there was a problem with the governors overheating the chip on performance gov.
Here the edited recovery build (originally compiled by evil goodd @ 4PDA ru)

Thanks T-ryder
t-ryder said:
On 4PDA ru there are some devs working on stuff for the U3. I have never used Xposed on the U3. Last stable build is b3.0.5 - b3.0.6 is so buggy, I wonder why the IUNI dev team even released that crap.
I managed to flash the b3.0.5 using TWRP changing the updater script removing the device check and the radio update.
delete (in updater script for b3.0.6)
Code:
getprop("ro.product.device") == "IUNI" || abort("This package is for \"IUNI\" devices; this is a \"" + getprop("ro.product.device") + "\".");
and
Code:
# ---- radio update tasks ----
ui_print("Patching firmware images...");
package_extract_file("firmware-update/tz.mbn", "/dev/block/platform/msm_sdcc.1/by-name/tz");
package_extract_file("firmware-update/sbl1.mbn", "/dev/block/platform/msm_sdcc.1/by-name/sbl1");
package_extract_file("firmware-update/rpm.mbn", "/dev/block/platform/msm_sdcc.1/by-name/rpm");
package_extract_file("firmware-update/emmc_appsboot.mbn", "/dev/block/platform/msm_sdcc.1/by-name/aboot");
msm.boot_update("backup");
msm.boot_update("finalize");
package_extract_file("firmware-update/NON-HLOS.bin", "/dev/block/platform/msm_sdcc.1/by-name/modem");
package_extract_file("firmware-update/splash.bin", "/dev/block/platform/msm_sdcc.1/by-name/splash");
unmount("/system");
Updating the radio once was enough (since I tried to translate the ROM and flashed the build over and over again to test).
Here is the thread on 4PDA ru - try reading using bing translator and if you want to dl something switch to original site view.
http://4pda.ru/forum/index.php?showtopic=598571
Me and my pal hellsgod edited the TWRP since there was a problem with the governors overheating the chip on performance gov.
Here the edited recovery build (originally compiled by evil goodd @ 4PDA ru)
Click to expand...
Click to collapse
Thank You T-ryder. I do not think Xposed will work for all these versions (they all have the same modified app_process) and I need it for many apps. By the way, there is a new version of firmware and it is only available in Chinese forums. its release date is 20150514 and it is recomended from the posts on the IUNI forums. The download link:
http://pan.baidu.com/s/1sj2txz3
pass: hsf2
Also 4PDA.ru looks interesting, I am already registered but I could not login because of the Russian handwriting capatcha
I need to upgrade the baseband of course, but I need Xposed as well so I am stuck. The strange thing that I saw OPO IUNI v3 ROM with Xposed installed and probably working!!

prof_mastermind said:
Thank You T-ryder. I do not think Xposed will work for all these versions...
Click to expand...
Click to collapse
Thanks. Did'nt know about the newer release. I just looove downloading from baidu...
atm I am using a MIUI v6 port by ry09iu modified by me (I call it MIUNI).

This is getting more and more OT, sry.
I tried to download the 20150514 ROM maybe like 10 times now. No succes. F*** baidu.
Could you mirror it for me? I want to have a look at the updater binary and the updater script (and maybe try the ROM itself).
btw...
I even got a crowdin repo for the german translation... but translating the whole OS is such a pain in the a**.

Just downloaded it
t-ryder said:
This is getting more and more OT, sry.
I tried to download the 20150514 ROM maybe like 10 times now. No succes. F*** baidu.
Could you mirror it for me? I want to have a look at the updater binary and the updater script (and maybe try the ROM itself).
btw...
I even got a crowdin repo for the german translation... but translating the whole OS is such a pain in the a**.
Click to expand...
Click to collapse
I have had the same problem of Baidu, I just successfully downloaded this ROM. Also I downloaded MIUI 6.0 v5.7.2 by Ry09iu if you want it. I will upload it to google drive and share the link.

Here the links
For the IUNI U3 20150514
https://drive.google.com/file/d/0B01YRIH4QUaBLUMxT2xXWlY2Q3c/view?usp=sharing
For The MIUI v5.7.2
https://drive.google.com/file/d/0B01YRIH4QUaBUENDR3dhNWpXcUk/view?usp=sharing
I hope it would help...........................

hi guys
comming from nubia z7 max and have now a iuni u3.
how can i download roms from the iuni baidu page
registation not working?
sorry for my funny english
andreas

prof_mastermind said:
I have had the same problem of Baidu, I just successfully downloaded this ROM. Also I downloaded MIUI 6.0 v5.7.2 by Ry09iu if you want it. I will upload it to google drive and share the link.
Click to expand...
Click to collapse
I just sold the IUNI... was fed up by this device and everything regarding it.

Burnin-Andy said:
hi guys
comming from nubia z7 max and have now a iuni u3.
how can i download roms from the iuni baidu page
registation not working?
sorry for my funny english
andreas
Click to expand...
Click to collapse
Here What I did, of course with the help of google translate:
1. Create A QQ acount from imqq.com
2. Use your QQ account to login Baidu and choose to transfere the files you want to download to your Baidu Cloud (using the right arrow sign ==>)
Note: In Egypt pan.baidu.com links are not opening even with proxies (give 404 error) with some of ISPs so I had to view these links with a different ISP!
3. Use Baidu Program to download the files (It works from any ISP) the program name is: BaiduYun
BaiduYunGuanjia_5.2.7.exe you can google it. you need to login with the same QQ account and it will show the files on your Baidu cloud and you can choose to download any of them (download sign in chinese is like a capital T with a small slash \ at its leg )
Hope this helps

prof_mastermind said:
For the IUNI U3 20150514
https://drive.google.com/file/d/0B01YRIH4QUaBLUMxT2xXWlY2Q3c/view?usp=sharing
For The MIUI v5.7.2
https://drive.google.com/file/d/0B01YRIH4QUaBUENDR3dhNWpXcUk/view?usp=sharing
I hope it would help...........................
Click to expand...
Click to collapse
Have you successfully flashed GAPPS on the latest IUNI beta rom? If so, what package did you use?

I'm having problems installing g-apps on iuni os as well. The phone always hang at welcome screen because settings crashes.
I'm currently using MIUI os, but prefer the iuni os.

wonderbao said:
I'm having problems installing g-apps on iuni os as well. The phone always hang at welcome screen because settings crashes.
I'm currently using MIUI os, but prefer the iuni os.
Click to expand...
Click to collapse
If you are using IUNI OS v2, you need to remove SetupWizard.apk from /system/priv-app after flashing, or remove it from the GAPPS zip prior to flashing.
I had Gapps working fine on the previous (buggy?) IUNI OS v3, but after upgrading to this one, I can flash the GAPPS package fine but the apps don't appear to be installed. Weird!

mikeysteele said:
If you are using IUNI OS v2, you need to remove SetupWizard.apk from /system/priv-app after flashing, or remove it from the GAPPS zip prior to flashing.
I had Gapps working fine on the previous (buggy?) IUNI OS v3, but after upgrading to this one, I can flash the GAPPS package fine but the apps don't appear to be installed. Weird!
Click to expand...
Click to collapse
Thank you for your reply.
I now have the same problem as you, after flashing GAPPS, none of the apps appear.
Am using MIUI os from the link above right now.
Let me know if you find a solution.

wonderbao said:
Thank you for your reply.
I now have the same problem as you, after flashing GAPPS, none of the apps appear.
Am using MIUI os from the link above right now.
Let me know if you find a solution.
Click to expand...
Click to collapse
Problem is there's not enough space left on the system partition to flash gapps on the latest IUNI OS v3 beta

mikeysteele said:
Problem is there's not enough space left on the system partition to flash gapps on the latest IUNI OS v3 beta
Click to expand...
Click to collapse
The IUNI V3.0 ROM I shared on Google Drive is the latest production version not beta, it is better than Beta 3.06 because WhatsApp is working and it is the latest basband/firmware.
For the problem of the insufficient disk space, I have a solution:
There is a folder in most of official ROMs that you can remove safely (/system/sdcard), it contains the promotion videos and songs for IUNI U3. They are copoied to emulated storage during rom installation so they are not needed anymore because they are already there.
Delete this folder (need Root Access and file manager like Root Explorer) then there will not be space problem again (it is 250MB). Install The latest GAPPS by TKruzze, use mini/micro/pico no problem. I used pa_gapps-modular-pico-4.4.4-20150308-signed.zip and works perfectly. Here are new download page after TKruzze closed the thread:
http://www.androidrootz.com/2015/03/download-android-44x-kitkat-pa-gapps.html

Related

DISCONTINUED[ROM][July, 22 2013] HTC Desire V Baidu CloudROM v32 (almost) English

DISCONTINUED
Sorry, I just sold my phone, and I can't develop for it anymore. I will keep these threads for you guys until something better will occur, but I will have some trouble to solve the problems. Thank you for all appreciations.
-- If this will help, you can still say thank you -- press the Thanks button! :good:
For those who are fans of MIUI, this is the closest thing. MIUI announced already that they will not support dualsim phones. But two of its "children", LewaOS and Baidu CloudROM are targeting that niche. LewaOS it's more suitable, but they didn't released a ROM for this phone... yet. Baidu did, but their ROM is focusing on China market - all farmework, and proprietary apps are filled with references to China locations, zones, codes, telephony operators, etc. I tried to build a ROM from LewaOS OpenBuild source, but unfortunately that is for gingerbread (the one from github).
I took last Baidu ROM, 32, and I made a version most in English. I put there and Morelocale apk for extra languages, but ICS 4.0.4 platform has only 16-18 languages.
Features:
- like any MIUI or LewaOS ROM.
- there are a lot of settings, and gadgets
- I removed non-important apps, integrated Google Apps
How to install:
- download the ROM zip
- delete from sdcard the well known three folders: .android-secure, Android, LOST.DIR
- in bootloader flash attached baiduboot.img
- in recovery do a full wipe
- in recovery install ROM zip from sdcard
- reboot, and wait for first boot. It will start with google setup wizard.
- do all the settings you want
- Here you go! Done!
If you choose to try this ROM, I assume that you know what you are doing, and I am not responsible if you brick your phone.
Download
1. HTC Desire V Baidu CloudROM v32 Max flavor v3 Deodexed
2. HTC Desire V Baidu CloudROM v32 Max flavor v3 Odexed
UPDATED to Version 32.
On first run it will be a big clock-weather widget on home screen - just drag it to upper margin to delete - it can't be removed for good since it is related to three jars from framework, only from screen. I did removed baidu weather because it was very limitative (only few cities from around the world), but I integrated Android weather which is much better.
Then, delete all shortcuts you don't want on any screen.
To remove the chinese bulletin from last screen on left, press menu button on home (the one with last open apps in stock ROM) and select home settings, then in opened menu scroll down to the last line and uncheck it - see the last screenshot.
To see last opened apps press and hold home button.
To set names and other things to each SIM, in DualCard settings menu, press the SIM number (22601 or 22610) and make those settings in newly appeared menu.
And, so on... you have to find by yourself how this ROM works, because are too much to talk about its settings.
carliv, nice work but any questiones .
support rom update OTA?
Version 29 i had trouble with location , support Version 31 location?
Version 29 exchange conection failed , support Version 31 exchange?
i am glad for your replay, Thanks.
alien1947 said:
carliv, nice work but any questiones .
support rom update OTA?
Version 29 i had trouble with location , support Version 31 location?
Version 29 exchange conection failed , support Version 31 exchange?
i am glad for your replay, Thanks.
Click to expand...
Click to collapse
I don't think it will support update OTA, because we don't use Baidu recovery, and the ROM is striped out. But I will make a new version for new ROM (32, 33... and waiting for v5 stable).
Location worked fine for me, it will ask you first to update some data from market, and after that all good.
I don't know about Exchange, I didn't tried it, I don't use this ROM currently (I use my senseless version), because I don't really like MIUI.
If LewaOS will release a ROM for this phone, maybe I will try it, because from what I've seen on other phones, it's a very stable and fast Android OS, and is not so much oriented for china market like Baidu.
I made this ROM because there are some people who wanted an English version.
Carliv, thank´s for your replay.
oky we will look forward .
I use at the moment your ROM HTC T328W -supercharger-Sense 5 . This ROM is great i´m happy with this. thank you very match for this work!!!
Kind Regard,
alien 1947
hi
i installed this rom.it is lovely smooth and really ell done,some bugs here and there but non major and can live with them.plz carry on development.this is a very good step to maintain this thread.we need it.
thnx dude.
im so greatful for the new update.im now downloading and will install tomorow and give my feed back soon.i am very thankful for the efforts and hope you carry on.we have to make alot to make this thread a life and ask every one to keep it a life with them subscription and replayes.
you welcome
new version in chinese
http://bs.baidu.com/platform-rom/102/T328W/T328W_102_20130906161712.zip
from here
http://bbs.rom.baidu.com/download.php?phoneid=16
New October Chinese Version
http://bs.baidu.com/platform-rom/102/T328W/T328W_102_20130922154026.zip
website
http://bbs.rom.baidu.com/download.php?phoneid=16
You can install Chinese Recovery by using Desire_V_All-In-One_Kit_v1.0
then flash the chinese version by pushing second option of Chinese recovery, then second option, after that forse restart.
You can go back to English recovery and do your Backup\Resore anytime.
Here is version 39 beta public test
http://bbs.rom.baidu.com/download.php?phoneid=16
its getting smarter.
yes. working great!
got errors with traffic monitoring. any experience with that? my Chinese aint that good
I am guessing you desire v lang in Eng now, so U souldn't have problrm in dealing with any part of the system.
version 40
http://bs.baidu.com/platform-rom/102/T328W/T328W_102_20130823115452.zip
the rom is working smoothly.... except for one "little" thing:
THE PHONE!!! is not working
it crashes as soon as I try to start a call or receive one
WTF
does someone experienced my same problem?
perhaps the rom is for the dual-sim phone HTC Desire V?
I've no problems with the Baidu rom v40
Im running the Baidu rom for months now
Lt-MajorTom said:
perhaps the rom is for the dual-sim phone HTC Desire V?
I've no problems with the Baidu rom v40
Im running the Baidu rom for months now
Click to expand...
Click to collapse
i didn't refresh the signature but I have the DESIRE V
where did you get the V40 rom?
from here
http://bbs.rom.baidu.com/download.php?phoneid=16
Install Baidu build 40 but how?
almozaffar,
Could you please share with me how you installed build 40? What boot or recovery image did you use? I really want to install Baidu ROM on my Desire V due to its slick design, speed and stability.
this method:
mr.wasssup said:
Need to remove lines:
Code:
assert(getprop("ro.product.device") == "t328w" ||
getprop("ro.product.device") == "T328W" ||
getprop("ro.product.device") == "primods" ||
getprop("ro.build.product") == "t328w" ||
getprop("ro.build.product") == "T328W" ||
getprop("ro.build.product") == "primods");
at the beginning of updater-script, which is located on the folder path META-INF\com\google\android.
To open Baidu ROM use WINRAR, to change updater-script use Notepad++ with exposed coded 'UTF-8 (without BOM)'
Put the modified updater-script in the archive with the replacement of original.
Do not unpack or repack Baidu ROM archive!!
Click to expand...
Click to collapse
carlo.edmon said:
almozaffar,
Could you please share with me how you installed build 40? What boot or recovery image did you use? I really want to install Baidu ROM on my Desire V due to its slick design, speed and stability.
Click to expand...
Click to collapse
very easy:
1-get this tool Desire_V_All-In-One_Kit_v1.0 from xda http://forum.xda-developers.com/showthread.php?t=2077774 and unpack it in "Android" folder in Drive C of your laptop
2-put your Desire V in Bootloader then plug it in, assuming you already installed the necessary drivers
3-click "Desire V.exe" from above tool
4-unpack your Baidu version then take "boot and Recovery" from it and copy them to "windows" folder of Drive C
5-click on "flash a kernel" from that exe then take "boot" from those two file you've got from Baidu pack. now you get the Baidu Boot.
6-, Unplug, reboot gadget into Bootloader again
7-click on "flash your recovery" then pick up the Baidu recovery you had
8-when done boot into recovery wich will be in chinese. Don't panic, bu using Volume button down, pick up the second choice by pressing Power Button, then the second choice which will take you to your SD where you put the latest Baidu ROM, now press Power Button to install it. when done, press Power Button continuasly intil rebooting. wait for complete startup, then get into your Settings to change language into Englsih.
9-here is the latest version 41
http://bs.baidu.com/platform-rom/102/T328W/T328W_R_2.1.41.121_102_2013-12-29_22-44-02.zip
Enjoy

[x86][GApps] FrankenGApps 20140826 4.4.x *UPDATED! Stable! Universal!*

DO NOT FLASH THIS ON A TOUCHWIZ ROM. AOSP BASED ONLY
This is a custom GApps package I created to work with x86 devices (namely, our tab) as the normal GApps packages available are arm-only. (and no, to those who would ask, it's not as simple as downloading PA-GApps and swapping the update binary. The actual files therein are NOT x86 compatible, namely, the libs.)
UPDATE 1: With the release of 4.4. for the P5210, I am pleased to announce that this is now a full, complete, stable GApps package
It contains everything found in the PA-GApps stock zip plus:
-Hackers keyboard
-Root browser
-Xperia home
note that Hacker's keyboard and Xperia home are just there in case google keyboard / google home don't work out of the box. I don't anticipate any problems, but just to be sure. After some feedback / testing i'll remove these if people want. Root browser however is here to stay.
UPDATE 2:
As of the 20140823 build, this is now a UNIVERSAL x86 GApps package, meaning it will work on ANY x86 device running 4.4.x with zero tinkering to the zip. I did this by using a slightly modified pa-gapps updater-script coupled with an x86 update-binary.
UPDATE 3:
The 20140826 build is mostly bug fixes. The updater-script in the 20140823 build was broken. This is now fixed. Google + was broken. This is also fixed.
Google keyboard was broken. This too, is now fixed.
Tested this build myself. All is well.
For those who want a ROM to try this with, head over to @moonbutt74 's thread "odds, ends tests". He posted a successful 4.4.4 build from a few days ago on i think the 4th or 5th post (though it is by NO MEANS dd ready. We're working on it)
DOWNLOAD LINK IS BELOW.
If you want to use this for any reason other than personal use, ask me first, unless you just want to include a link on your ROM thread. If you do want to include a link in your ROM thread, link to this thread, not the download link below.
Download link:FrankenGApps-x86-20140826
old builds:
20140823 build:
FrankenGApps-x86-20140823.zip
The updater script in this build is broken. On top of that, if you fix it yourself, google + and google keyboard are borked.
20140814 build:
FrankenGApps-x86-20140814.zip
This build only works with the tab 3 10.1.
Old legacy hackey build:
FrankenGApps-x86-20140813.zip
there is absolutely no reason to flash the 20140813 build over newer builds. The 20140813 build is an unstable / hackey 4.2 gapps port, I'm just posting it for reference purposes. Naturally this build is unsupported. Please download the new build(s) from OP.
if i flash the build of 14th then i stuck on samsung boot logo. firmware was stock rooted deodexed 4.4.2. i have tryed it twice but always stuck on boot logo.
evilspawnas said:
if i flash the build of 14th then i stuck on samsung boot logo. firmware was stock rooted deodexed 4.4.2. i have tryed it twice but always stuck on boot logo.
Click to expand...
Click to collapse
I was sameway, so I just downloaded the update from "sammobile" installed it and used " super Su from chailfire to get root also used root explore to take out the apps I did not need.
@evilspawnas
 @ghforlife
Why did you flash this on a touchwiz rom?
This zip is meant for aosp based ROMs like cm11. (I tested this package on @moonbutt74's wip cm11 build, works like a charm)
Besides, TW Roms have GApps built in
Restl3ss said:
@evilspawnas
@ghforlife
Why did you flash this on a touchwiz rom?
This zip is meant for aosp based ROMs like cm11. (I tested this package on @moonbutt74's wip cm11 build, works like a charm)
Besides, TW Roms have GApps built in
Click to expand...
Click to collapse
Oh, sorry, but all the other devices have cm 11, it´s like my normal behaviour to flash gapps... shame on me
Just updated to 20140823.
As of now, this GApps package is universally compatible with all x86 devices running 4.4.x. Zero tinkering to the zip necessary.
Just updated to 20140826. This build fixes updater-script, google keyboard, and google +. Read "update 3" in OP for more info.
Nice
Another stone in building our road to CM11. Thanks.
I know many will used this update.
To be honest, I am forced to used the market, but try to stay away from C I A applications. I am sorry did I say C I A. My apologies it is the Alzheimer, I mean Google.
( Central Intelligent in Android)
so how would one go about installing this on a dell xps12 running intels official haswell build of kitkat?
(https://01.org/android-ia/downloads/android-4.4.2r1-ia0)
Manually place the files with root explorer?
thanks
i love your rom man..been running pimpdroid since day 1 of this tablet...this is the only kitkat rom for this device on kitkat..im bout to try your modified gapps ...im not near as a advanced user than you..and i dont really understand some of the things you talk about..but im gonna go ahead and ask...what are the advantges of installing this gapps package opposed to keeping the ones flashed with your pimpdroid rom?....sorry if this is a dume question...this is first ive seen of a modified gapps package...can u be more specfic bout what would be diff?...or is it jus a more like internal thing..and i wont really notice nothing diff being a nebie and all i guess..dont really consider myself such a nebie..but compared to dev like yourself..def..am..
lucky_515 said:
i love your rom man..been running pimpdroid since day 1 of this tablet...this is the only kitkat rom for this device on kitkat..im bout to try your modified gapps ...im not near as a advanced user than you..and i dont really understand some of the things you talk about..but im gonna go ahead and ask...what are the advantges of installing this gapps package opposed to keeping the ones flashed with your pimpdroid rom?....sorry if this is a dume question...this is first ive seen of a modified gapps package...can u be more specfic bout what would be diff?...or is it jus a more like internal thing..and i wont really notice nothing diff being a nebie and all i guess..dont really consider myself such a nebie..but compared to dev like yourself..def..am..
Click to expand...
Click to collapse
Hey brother don't dare to flash it.... It's not for a Touchwiz rom like pimpdroid or Cagrom., It's for AOSP rom like Omni rom , AOKP , CM11 , AICP etc....
Sent from my GT-S6802 using XDA Free mobile app
Thanks for the gapps, working on my 3830 AOSP rom.
Restl3ss said:
DO NOT FLASH THIS ON A TOUCHWIZ ROM. AOSP BASED ONLY
This is a custom GApps package I created to work with x86 devices (namely, our tab) as the normal GApps packages available are arm-only. (and no, to those who would ask, it's not as simple as downloading PA-GApps and swapping the update binary. The actual files therein are NOT x86 compatible, namely, the libs.)
UPDATE 1: With the release of 4.4. for the P5210, I am pleased to announce that this is now a full, complete, stable GApps package
It contains everything found in the PA-GApps stock zip plus:
-Hackers keyboard
-Root browser
-Xperia home
note that Hacker's keyboard and Xperia home are just there in case google keyboard / google home don't work out of the box. I don't anticipate any problems, but just to be sure. After some feedback / testing i'll remove these if people want. Root browser however is here to stay.
UPDATE 2:
As of the 20140823 build, this is now a UNIVERSAL x86 GApps package, meaning it will work on ANY x86 device running 4.4.x with zero tinkering to the zip. I did this by using a slightly modified pa-gapps updater-script coupled with an x86 update-binary.
UPDATE 3:
The 20140826 build is mostly bug fixes. The updater-script in the 20140823 build was broken. This is now fixed. Google + was broken. This is also fixed.
Google keyboard was broken. This too, is now fixed.
Tested this build myself. All is well.
For those who want a ROM to try this with, head over to @moonbutt74 's thread "odds, ends tests". He posted a successful 4.4.4 build from a few days ago on i think the 4th or 5th post (though it is by NO MEANS dd ready. We're working on it)
DOWNLOAD LINK IS BELOW.
If you want to use this for any reason other than personal use, ask me first, unless you just want to include a link on your ROM thread. If you do want to include a link in your ROM thread, link to this thread, not the download link below.
Download link:FrankenGApps-x86-20140826
Click to expand...
Click to collapse
Questions:
1. Does this work with LineageOS 14.1 [Android 7.1.2]
2. Where are the instructions on how to install this?
SerjSev said:
Questions:
1. Does this work with LineageOS 14.1 [Android 7.1.2]
2. Where are the instructions on how to install this?
Click to expand...
Click to collapse
These gapps are 6 years old and for older versions of android. Go to opengapps.org for android 7.1.2 based gapps.
And also why do you need instructions? Same as all gapps just flash the zip after flashing the rom
garylawwd said:
These gapps are 6 years old and for older versions of android. Go to opengapps.org for android 7.1.2 based gapps.
And also why do you need instructions? Same as all gapps just flash the zip after flashing the rom
Click to expand...
Click to collapse
Owh Hi, okay ?
Never thought someone would answer, the Tab 3 10.1 page on XDA is sadly dead, other models too for the Tab 3. And i still have the device! Ha. Did you like get notified when i replied to this thread that you checked? Because i was surprised, never thought again someone would answer to this old page part of XDA! I would love to talk with you and etc, cause im kinda lonely here lol, i know the device is old but old is gold! People can make many mods for it! Ill wait for your reply
SerjSev said:
Owh Hi, okay ?
Never thought someone would answer, the Tab 3 10.1 page on XDA is sadly dead, other models too for the Tab 3. And i still have the device! Ha. Did you like get notified when i replied to this thread that you checked? Because i was surprised, never thought again someone would answer to this old page part of XDA! I would love to talk with you and etc, cause im kinda lonely here lol, i know the device is old but old is gold! People can make many mods for it! Ill wait for your reply
Click to expand...
Click to collapse
I have a tab 3 10.1 WiFi so if anything pops up around these threads I always have a look.
The tablet is still working fine for me without any gapps on it as I've found gapps are extremely heavy on such an old tablet. Instead I opted for a microg installation and it works perfectly (even being able to play games like bullet force or fwd assault) but i mostly use it for reading and cooking and that kind of stuff which it is perfect for.
garylawwd said:
I have a tab 3 10.1 WiFi so if anything pops up around these threads I always have a look.
The tablet is still working fine for me without any gapps on it as I've found gapps are extremely heavy on such an old tablet. Instead I opted for a microg installation and it works perfectly (even being able to play games like bullet force or fwd assault) but i mostly use it for reading and cooking and that kind of stuff which it is perfect for.
Click to expand...
Click to collapse
Owhh, i see. I put this rom on my tab: https://forum.xda-developers.com/galaxy-tab-3/development-10/rom-lineageos-14-1-t3587761
It does lag sometimes, but i removed some of the GApps it came with. I mean, the second i removed playstore some other Google apps stopped working so i had to delete them too. It's a bit better, but i dont play games on it, it's still laggy i should've chosen another ROM but i guess this is fine. Which ones are you using? If you want we can talk in discord, or here if you want, which ever way you fele comfortable. I can share the apps i have and etc, since we have the same tablet, finally i found someone in 2020 having the same device as i have! Ha. I'm still here, so if you reply and i wont answer, i will answer later, i have schedule to follow that's why
Ill wait for your response, anywhere, if you want dm me here, chat in this thread or check my discord, send a friend request and tell me here ur name so I'd accept it. You can also find me in the XDA discord server.
garylawwd said:
I have a tab 3 10.1 WiFi so if anything pops up around these threads I always have a look.
The tablet is still working fine for me without any gapps on it as I've found gapps are extremely heavy on such an old tablet. Instead I opted for a microg installation and it works perfectly (even being able to play games like bullet force or fwd assault) but i mostly use it for reading and cooking and that kind of stuff which it is perfect for.
Click to expand...
Click to collapse
Hey, where have you been?

Z7max new custom ROM

New Custom z7max ROM by BB72 & Cuoco92****
COMBO ROM Android L per Nubia Z7 Max
there are several versions all labelled as beta
all are multi lang and have g apps
COMBO ROM BETA1 Based on 3.09 UI 2.9
COMBO ROM BETA2 Based on 3.09 UI 2.9
COMBO ROM BETA1 Based on 3.15 UI 3.0
I am using the last one. very smooth. no issues as of yet. both sim working well.
this ROM ONLY for the new Android 5 file system
meaning MUST use Nubia android tool to update the file system this totally erases everything on the phone so
BACK UP BACK UP BACK UP ---- INCLUDING IMEI
(I recommend titanium. if doing nandroid backup it will be in the OLD file system so if your transition to new filesystem fails
will need to use Nubia tool to downgrade to old file system.)
Full credit and kudos to BB72 for his EXCELLENT work on this device
Link (in Italian can use google translate) to Androidiani Forums
http://www.androidiani.com/forum/zt...-bb72-cuoco92-zte-nubia-z7-max-combo-rom.html
scroll down for links
one of his versions is also linked from needrom.com
finally - repeating my question does anyone know where nubiaforums disappeared to?
opening a browser to www.nubiaforums.com gets me to Welcome to nginx!
entdoc said:
finally - repeating my question does anyone know where nubiaforums disappeared to?
opening a browser to www.nubiaforums.com gets me to Welcome to nginx!
Click to expand...
Click to collapse
Same Question about nubia forums. not clear

VIBE PURE St 1 Rel 26072016

Time Appropriate Greetings fellas!!!
VIBE_PURE is based on the latest VIBEUI ROW Indian release for K3 Note by Lenovo and so it has the bugs that will be present in that release. This rom is developed with the idea to have the best of both words which is the simplicity of AOSP and the features of lenovo tied to K3 note, its a learning process for me and those who wish to test it or modify it are welcome to do it but please credit me and people in my credit section and also please comment in the thread what u have done to correct the bug because in the end all we need is Fully functioning ROM and knowledge of how to do it....
Known Bugs
Whatever the bugs listed for the latest ROW Release.
this is a stable release....rooted, busybox, gapps, xposed and few MultiLanguage...
Has VR mode and Dolby Atmos
With VIBEUI Dev 1629 Kernel...
Sticked to ROW Modem...
Thermal Files from Leishui 1629 Rom
Has Android Nify Xposed module installed which can be enabled in Xposed Installer
MiXplorer and Noozy Music Player Preinstalled.
WARNING TEST THIS AT UR OWN RISK....BACKUP EVERYTHING U HAVE BEFORE DOING ANYTHING...
Boot into TWRP recovery
Wipe Dalvik Cache, Cache, System and Data
Flash the ROM
Reboot....
POST 1 Intro
POST 2 Changelog
ROM DOWNLOAD
VIBE PURE Stable 1
SCREENSHOTS
Created : 26/07/2016
Last Release : 26/07/2016
State : STABLE
Credits :
Lenovo for phone and software, LeiShui, chainfire for supersu, osm0sis for busybox installation finally SuperR for SuperR's Kitchen with which the rom is made.
CHANGELOG
Vibe Pure Stable 1 - Initial Release
Downloading now. Will flash and update soon!
EDIT : I am using the Stable 1 version! Fantastic ROM. Completely preserves the functionality of Lenovo but with an clean front. Hats off. Will test battery life and update soon.
Thankyou pvkiniyan95 for the ROM. I installed on my Lenovo k3 Note K50a40.
UI was butter smooth and no issues regarding gapps FC's. Initial boot took 30mins then removed battery and formatted through twrp 2.8 ,then rebooted. Worked fine. Need more time to check all features. But my experience with this ROM gave pleasant and very smooth. Battery stable. Used hotstar live TV streaming for 30mins consumed around 2%battery. Amazing power stability.
There's a crash when trying to set a locally stored ringtone through Sound settings. Happens all the time. Any workarounds for that ?
I really like this rom but for some reason it cannot find internal sd card. The sdcard0 is missing.
When I connect pen drive via otg it's show POP-UP shows "unfortunately, system ui stoped"
Thx for this room to developers and xda team for this room.flashed today working very well.
It's not the problem
vaibhavmane4 said:
When I connect pen drive via otg it's show POP-UP shows "unfortunately, system ui stoped"
Click to expand...
Click to collapse
It's not the problem with this room it is the problem with mi file manager delete it and get another one like es file manager.
working twrp ? for all custom roms ?
Can some provide the download link. Above link is not working

[ROM][Pixel/PixelXL]MIUI12

I made a miui12 with erfangsi
How to flash
1.Unzip MIUI12 for marlin.zip
2.flash twrp 3.3.1.3.img
3.Create a new folder in TWRP folder
4.Put files in new folder
5.Restore
6.Flash the miui12 patch.zip
(If you're using pixel, you don't want to restore vendor!!!)
(YOU CAN FLASH GAPPS TO USE GCM!)
Known Issues
1.In-call audio not working
2.Aiassistant Voice wake up not working
3.Hotspot not working(This is because the official camera is not available)
4.Face Unlock
If you know how to fix it, you can tell me and everyone
My English is not very good. I hope you can understand it
My TG group:https://t.me/joinchat/N8w3ihh-AdS9zcMhuathZw
Welcome to join us to discuss GSI
:laugh::laugh::laugh:
XDA:DevDB Information
[Pixel/PixelXL]MIUI12, ROM for the Google Pixel XL
Contributors
Wonderlooo, Wonderlooo
ROM OS Version: 9.x Pie
ROM Kernel: Linux 3.x
Version Information
Status: Alpha
Current Stable Version: MIUI12 20.4.27
Stable Release Date: 2020-05-11
Created 2020-05-11
Last Updated 2020-05-11
Forget to say that you need to expand the system partition of the mobile phone before use:https://forum.xda-developers.com/pi...xpand-partition-pixel-xl-pixel-t4097839:p:p:p
Downlink:https://drive.google.com/open?id=1QF4LNq7CllgmUGpd9TFVodyNg5fEoLJy
Mod edit - translated by https://translate.google.com/:
miui is still easy to use in China
*************************************
miui还是国内好用
xixiha5230 said:
Mod edit - translated by https://translate.google.com/:
miui is still easy to use in China
*************************************
miui还是国内好用
Click to expand...
Click to collapse
XDA Forum Rules (excerpt):
...
4. Use the English language.
We understand that with all the different nationalities, not everyone speaks English well, but please try. If you're really unable to post in English, use an online translator. You're free to include your original message in your own language, below the English translation. (This rule covers your posts, profile entries and signature). You could try :- https://translate.google.com/ or https://www.babelfish.com/ or use one of your choice.
...
Click to expand...
Click to collapse
Was anybody successful in booting any GSI?
SirRGB said:
Was anybody successful in booting any GSI?
Click to expand...
Click to collapse
Do not try this, will brick your phone
confirmed not working. fails to restore.
I can restore, I even got the boot animation (with some tinkering), but I couldnt get into the system. Thats the problem I had with all GSIs on my Pixel.
https://asineth.gq/posts/pixel-gsi.html
Haven't tried it myself for now.
I've tried miui a few times using gsi and it NEVER works. I wouldn't even try.
Expanded partition, flashed it, everything you can think of, it never boots don't waste your time
Sent from my IN2017 using Tapatalk
fix wifi connect
connect wifi not stable
how to fix pls
You suceed?!
i boot and setup into miui but connect and disconnect wifi continuously
restart error, lost twrp, return recovery default
This telegram group ....?

Categories

Resources