[APP][ROOT] Xiaomi Motor Control For K20 - Redmi K20 / Xiaomi Mi 9T Themes, Apps, and Mods

Disclaimer :
Code:
* I'm not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed (like it did for me...).
* YOU are choosing to make these modifications, and if you point the finger at me for messing up your device, I will laugh at you.
* Your warranty will be void if you tamper with any part of your device / software.
Description :
Enables user to popup or retract the front camera manually, does not require any additional libs just need root.
Will work on Custom Roms as well as GSIs which don't have any motor service active.
Features :
Set Initial Status
Popup/Retract Camera
Safety measures (Won't Initiate takeback command if camera is already retracted and so on)
Download :
AFH
Original Author :
realheart
Translation & Safety :
acervenky
Binaries & Original Solution :
phhusson
AndyYan
Source Code :
Github
Regards,
acervenky

Reserved

Does not work on PE.
Always say it's already popped out or retracted
App starts at 10-16 22:14:04

Does not work on miui
the app refuses to open

whoamix3 said:
Does not work on PE.
Always say it's already popped out or retracted
App starts at 10-16 22:14:04
Click to expand...
Click to collapse
Open the menu, set the camera position to in or out depending on your situation and then try!
Regards,
acervenky

acervenky said:
Open the menu, set the camera position to in or out depending on your situation and then try!
Regards,
acervenky
Click to expand...
Click to collapse
Now it does not say it's already in or out anymore, but nothing happens.
App should start at 10-17 08:30:40
Regards
whoamix3

whoamix3 said:
Now it does not say it's already in or out anymore, but nothing happens.
App should start at 10-17 08:30:40
Regards
whoamix3
Click to expand...
Click to collapse
Is the rom using lineage-motor implementation?
Regards,
acervenky

acervenky said:
Is the rom using lineage-motor implementation?
Regards,
acervenky
Click to expand...
Click to collapse
I think so. I found [email protected] in system/lib and lib64
Regards,
whoamix3

BrianWuTwKh said:
Does not work on miui
the app refuses to open
Click to expand...
Click to collapse
Yes can't work on miui!!!
- From gitHub code:
if (OtherUtils.isMIUI()) // 检测MIUI => If MIUI version detected:
{
Toast.makeText(this, "不支持MIUI系统,请使用类原生或Flyme系统!", Toast.LENGTH_LONG).show(); => Display this message
finish(); => Exit the app
}
:/

Related

[APP] Device Reset -[R]- 21 Jan 12 -[U]- 21 Jul 12 -[V]- 3.0.0.0

Device Reset
powered by fiinix's DllImport Project​
description
--- restart or shutdown device
recognition
--- XDA Portal
pre-installed
--- Rataplan ROM
release log
--- Device Reset v3.0.0.0
------ see Post #31 or click here
--- Device Reset v2.0.1.0
------ see Post #25 or click here
--- Device Reset v2.0.0.0
------ see Post #16 or click here
--- Device Reset v1.2.0.0
------ see Post #15 or click here
--- Device Reset v1.1.0.0
------ see Post #14 or click here
does soft reset wipe the device?
soft reset restarts back your phone.
power will shutdown your phone thoroughly(no need to press the power switch button)
Nice app, THX (+)
Thanks sh4d0w86!!
congratulations for first wp7 development!!
will keep my power button intact much longer! that was needed
I'm sure hard-reset is a good idea, but if a bad manip occurs it can be upsetting...or with a flashy red background color for warning purpose...
would it be possible to have all restart options? i mean one which start with the tricolors screen, another for usb update (the one used to load goldcarded .nbh)...?
NebZoNe said:
I'm sure hard-reset is a good idea, but if a bad manip occurs it can be upsetting...or with a flashy red background color for warning purpose...
Click to expand...
Click to collapse
+1 !!!
Just a small notification to confirm Hard-Reset please ...
Thankx for developpement
will it be possible to have a sleep button as a tile?
if possible pinnable tiles on the homescreen...
Magpir said:
does soft reset wipe the device?
Click to expand...
Click to collapse
soft reset = restart, reboot
hard reset = [factory] restore
Ttblondey said:
soft reset restarts back your phone.
power will shutdown your phone thoroughly(no need to press the power switch button)
Click to expand...
Click to collapse
exactly.
NebZoNe said:
Thanks sh4d0w86!!
congratulations for first wp7 development!!
will keep my power button intact much longer! that was needed
I'm sure hard-reset is a good idea, but if a bad manip occurs it can be upsetting...or with a flashy red background color for warning purpose...
would it be possible to have all restart options? i mean one which start with the tricolors screen, another for usb update (the one used to load goldcarded .nbh)...?
Click to expand...
Click to collapse
thanks, NebZoNe.
those were my thoughts exactly when wanting to build this app.
i will, of course, have notification pop up to execute a hard reset.
actually, that is the main reason it isn't implemented in first release...
unsure how to exactly do that, yet.
that is an awesome idea. will look into it.
poloche said:
+1 !!!
Just a small notification to confirm Hard-Reset please ...
Thankx for developpement
Click to expand...
Click to collapse
already on my to-do list.
glad you like the app.
Magpir said:
will it be possible to have a sleep button as a tile?
if possible pinnable tiles on the homescreen...
Click to expand...
Click to collapse
already on my to-do list.
unsure how to do, though, yet, which is why it wasn't already included.
sh4d0w86 said:
already on my to-do list.
unsure how to do, though, yet, which is why it wasn't already included.
Click to expand...
Click to collapse
put this in your MainPage.xaml.cs
could work
Code:
private string tag;
//If the app navigates to the MainPage.Xaml this function tries to read a a tag-property from the Uri.
//You use the Uri to navigate between pages by calling the NavigationServices.Navigate(new Uri("/MainPage.xaml",UriKind.Relative)).
//To push a parameter to the site you can add them to the uri as following:
//"/MainPage.xaml?tag=tagnvalue&otherproperty=othervalue"
//If you launch the app these settings are empty
//If you launch it with the pinned tile you can set this Uri to submit the parameters
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
//get the value.
NavigationContext.QueryString.TryGetValue("tag", out tag);
//restart, shutdown... depending on the tagvalue. if tag is empty nothing happens (you can add a case default: "your code" break; to perform a default action)
switch(tag)
{
case "soft":
softreset(); //your void to perform the softreset
break;
case "hard":
hardreset();
break;
case "shotdown"
shotdown();
break;
}
}
//the functions performing the different restart modes
private void softreset()
{
}
private void hardreset()
{
}
private void shutdown()
{
}
//this action creates a softreset tile by calling PinToStart("soft");
private void PinToStart(string tag)
{
string title = "";
//set the title of the tile
switch (tag)
{
case "soft":
title = "soft reset";
break;
case "hard":
title = "hard reset";
break;
case "shotdown"
title = "shutdown";
break;
}
//search the tile with the title given by the tag in the step before
ShellTile TileToFind = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString().Contains("DefaultTitle=" + tag));
//if it's not existing this creates a new one
if (TileToFind == null)
{
//the data for the tile
StandardTileData NewTileData = new StandardTileData
{
//you can create different images for the tiles called "softTile.jpg", "hardTile.jpg", etc. in you "Images" folder
BackgroundImage = new Uri("Images/" + tag + "Tile.jpg", UriKind.Relative),
Title = title,
//Count = 12,
//BackTitle = "",
//BackContent = "",
//BackBackgroundImage = new Uri("Blue.jpg", UriKind.Relative)
};
//create a new tile with the tiledata
ShellTile.Create(new Uri("/MainPage.xaml?tag=" + tag, UriKind.Relative), NewTileData);
}
Does anyone notice/try change background to white while accent color to blueberry and when you open the Device Reset you can't see anything. Is it a bug?
ne0cr0n said:
put this in your MainPage.xaml.cs
could work
Click to expand...
Click to collapse
thanks for that bit of code. unfortunately... i have no idea what it does exactly. :/
Ttblondey said:
Does anyone notice/try change background to white while accent color to blueberry and when you open the Device Reset you can't see anything. Is it a bug?
Click to expand...
Click to collapse
not a bug, an overlook on my part. everything still there and works, it is just white font on white background. fixed for next release. good catch. next release, app will match Theme & Accent choice.
sh4d0w86 said:
thanks for that bit of code. unfortunately... i have no idea what it does exactly. :/
Click to expand...
Click to collapse
I added some comments to the code
sh4d0w86 said:
thanks for that bit of code. unfortunately... i have no idea what it does exactly. :/
not a bug, an overlook on my part. everything still there and works, it is just white font on white background. fixed for next release. good catch. next release, app will match Theme & Accent choice.
Click to expand...
Click to collapse
Just an 'accidentally' catch. Well, will wait for the next release.
Device Reset v1.1.0.0 released
--- Added/Updated
------ Accent & Theme support
------ Message Boxes
--------- Hard Reset
--------- Shutdown
--- Fixed
------ White Theme bug
--- Issue(s)
------ Hard Reset
--------- still not working
Device Reset v1.2.0.0 released
--- Added/Updated
------ removed DLLImport hyperlink(s)
------ revised Application Icons
--- Removed
------ Hard Reset
Device Reset v2.0.0.0 released
--- Added/Updated
------ Double Tap to execute actions
------ Pinnable Soft Reset/Shutdown Tile(s)
--------- Hold button
--------- pinned actions execute from Tile
auto on/off airplane mode
Hi,
Can you add a feature in your app to auto on/off airplane mode at scheduled time??? It could be a great battery saver...
updated Post #1. also, added additional pictures; Tiles, Tile Actions
kushal3110 said:
Hi,
Can you add a feature in your app to auto on/off airplane mode at scheduled time??? It could be a great battery saver...
Click to expand...
Click to collapse
sorry, but that would be a total random feature...
Thanks for this apps
Nikolo33 said:
Thanks for this apps
Click to expand...
Click to collapse
welcome and thank you for using and supporting it.

ColorOS 2 (V.2.5)-REDEFINED***BUGGLESS***STABLE***FEATUREPACK FOR A210[LINKS UPDATED]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
COLOR OS 2 For Micromax Canvas 4/Wiko Stairway..
Micromax A210/ Wiko Stairway
PORTED ,FIXED ,THEMED FROM OPPO FIND 7 TO MTK C2+
And Then Ported to Micromax A210
Join Our Official Facebook Page
*************FEATURES***********
* Color OS UI 2
* Base Changed From chinease color os 2 to International Color Os 2
* Quick Gesture (no more from status bar)
* IOS MultiTasking
* Whole new UI
* 13mp camera patched
* slow motion video added in cam
* voice to take pic added
* lots of amazing goodies in camera
* Better Pic quality
* New Gesture Function Added
* Single sim 3G supported
* 5 lockscreen types (Inbuilt)
* 2 Themes (Inbuilt)
* QuickBoot
* Pre-Rooted
* Brighter Flashlight
* Brighter Camera Flash
* Gapps Included
* Performance Tweaks
* Better Responsiveness & Speed
* Themes Supported
* Battery Tweaks Added
* Whole Ui Changing Theme Supported
* Zero Lag
* Guest Mode
* New security center
* Holiday Mode
* Auto task killer
* Data Saving Mode
* Backup And restore app fixed
* Find 7 Launcher added
* Dolby Sound Added
* Floating Video Player
* Many more.....
Sensor And Motion Features :
* 3 Finger Pinch Camera Open
* 2 Finger slide up and down manage Volume Control
* 3 Finger slide screenshots
* Quick Gesture Added from bottom
* Quick gesture to Shutdown
* Easy call,dial, Auto answer All r working
* Many More....
FAQ :
. Long Press Home Button : Recent apps
2. Double Tap on Home Button : Lock
3. Open Gesture Part : Pull upper side ur finger from the middle of home button on touchscreen to get gesture
4. Many more hidden stuff.......:
SCREENSHOTS
Download:- ColoOS 2.5
Bugs known:Coming fixes in next update
1. 3G Sim switching
2. Font fixed bt not changing (use ifont app)
3 No sim option in contacts app
4. App lock,permission monitor fc
Instructions
( You Can Take CMW Backup for Revert back to your old system )
1) Download Color-Os v.2.5.zip File
2) Put into External/Internal SD Card
3) Go To CMW Recovery
4) Wipe Data/Factory Reset
5) Wipe Cache
6) From Advance Menu Do Delvik Cache Clear
7) Go in Mount And Storage select FORMAT SYSTEM
8) Select Intall From SD and Select file And Click YES
9) Select Color-Os v.2.5.zip And Select YES
10) Reboot
11) Congrats You have Color-OS Rom now....Report if you find bugs
Credits
1. OPPO
2. MANISH SINGH([email protected])
3. Nihar Deshpande(NeroD)​
XDA:DevDB Information
Color OS 2.5 , ROM for the Micromax Canvas 4 A210
Contributors
NeroD, [email protected]
ROM OS Version: 4.2.x Jelly Bean
ROM Kernel: Linux 3.4.x
Based On: Color OS 2
Version Information
Status: Testing
Current Stable Version: 2.5
Created 2014-08-21
Last Updated 2014-08-22
Addons
********************WHOLE UI CHANGING THEMES *****************
1. DARK THEME LINK : Color OS Darkness
For more theme u can do google search, Own theme making guide coming soon
STEPS TO USE OF THIS THEME :
1. DOWNLOAD THE THEME
2. COPY IT TO SD CARD/THEMES FOLDER
3. OPEN THEME APP AND GO TO LOCAL THEME OPTION
4. APPLY IT AND ENJOY
Screenshots:
2.Facebook Like Timeline Status Bar.
DOWNLOAD LINK
Instructions:
1. Just Download the Zip and Flash via CWM.
2. You will find two new apps named 'Nemesis Owner Info" and "Lenox FB Cover"
3. Use Nemesis Owner Info to Set Profile Pic and Name.
4. Use Lenox Cover to change Baground Pic and Status.
5. Reboot to apply changes.
6. Using pic with High Resolution will cause lag. better resize pic to smaller.
FAQ
*******************Frequently Asked Questions*********************
1. Why ram usage is high ?
Ans : Oppo itself told that ram usage is high
To fix this issue follow the procedure as listed below
1. Download (quick system info pro) app and run it
2. Go to settings of app and select auto restart task killer in status bar
3. You will get task killer in status bar....jst press it and u will get free ram (whenever u needs jst tap on it)
4. (2nd option) open security app ,go to ram management and manage it from there
Look at my Ram Usage-
2. Why battery discharging fast ?
Ans : 1. First wipe battery stats from recovery and also callibrate it
2. Enable battery saving and close animation stuff in deep sleep mode
3. Why fc in permission monitor and app lock fc ?
Ans : Working hard to bring this feature soon
4. Camera Doesn't Click Pictures.?
1.Download Lenovo Super Camera From http://d-h.st/P0m
2.Select 13 MP Resolution and click the pics.
Next update will bring Stock Cam With 13 MP cam.
Sorry for the inconvenience.​
Great.......
Finally we are getting this ROM today...I am so much excited to look into...
awebdesigner09 said:
Finally we are getting this ROM today...I am so much excited to look into...
Click to expand...
Click to collapse
Will try to get it done today... Otherwise tomorrow. Rom size is big... And I have a slow net connection.
that's fine.
NeroD said:
Will try to get it done today... Otherwise tomorrow. Rom size is big... And I have a slow net connection.
Click to expand...
Click to collapse
We will wait.
Waiting for ur great work!!!
Sent from my A210
Can u pls confirm?
@NeroD
Can u pls confirm, will it be available today or tommorrow?
awebdesigner09 said:
@NeroD
Can u pls confirm, will it be available today or tommorrow?
Click to expand...
Click to collapse
Bro my net is down and Size is big... So not tonight... Tomorrow if net comes.
Sent from my Wiko Stairway using Tapatalk
very excited..
007jigar said:
very excited..
Click to expand...
Click to collapse
awebdesigner09 said:
@NeroD
Can u pls confirm, will it be available today or tommorrow?
Click to expand...
Click to collapse
Ashok sha said:
Waiting for ur great work!!!
Sent from my A210
Click to expand...
Click to collapse
Will release by midnight. Sorry for delay.
Sent From My Micromax A210 Using ColorOS 2.
Plz give us an update
@NeroD
Can u plz give us an update, Will it going to release by 12 O' clock?
Guys Finally Your Wait Is Over...
The ROM if finally uploaded. Please go to First Post for Download.
Sorry for the Delay.
Please Don't Just Download and Enjoy Press Thanks and Give Reviews. It will cost you a Minute But Will Motivate me to Do more Work.
Regards,
NeroD.
And Please Dont Send Me Messages about this. Instead Post on Thread. Or your messages will be ignored. Sorry for it.
Pls fix link..
NeroD said:
Guys Finally Your Wait Is Over...
The ROM if finally uploaded. Please go to First Post for Download.
Sorry for the Delay.
Please Don't Just Download and Enjoy Press Thanks and Give Reviews. It will cost you a Minute But Will Motivate me to Do more Work.
Regards,
NeroD.
And Please Dont Send Me Messages about this. Instead Post on Thread. Or your messages will be ignored. Sorry for it.
Click to expand...
Click to collapse
Sure, But, getting the following error "We're sorry, but you do not have access to this page."
It may be permissions issue.
Link working now, Downloading..
awebdesigner09 said:
Sure, But, getting the following error "We're sorry, but you do not have access to this page."
It may be permissions issue.
Link working now, Downloading..
Click to expand...
Click to collapse
Yeah my bad. Done fixing. And yeah Currently Status Bar is normal will add A patch for That Awesome Modded Status Bar.
Needed the status bar
NeroD said:
Yeah my bad. Done fixing. And yeah Currently Status Bar is normal will add A patch for That Awesome Modded Status Bar.
Click to expand...
Click to collapse
i was awaiting the status bar more
I am the first....
I am first
We should appreciate again @NeroD for his great work.
Everything is working fine.. Here are the few issues:
Camera is not capturing any pics.
Photos app is crashing after using Camera, as its unable to show pics. On-reboot it's working
Still RAM usage is very high.
Weather widget is not working at first-time. after re-boot its working.
Flash light issue is still there, it's dimming after 2seconds.
Still Keyboard is not working on first-time. After disabling GoogleVoiceInput, It's working.
​
Please let us know any fixes available..
Saw camera issue... Will fix it soon. Didnt find crash in photos working finr for me. To fix keyboard just go to language and input and set it as default. Use quick system info app from play store to manae ram. It will be high ad this is a Qualcomm to mediatek phone.
Sent from my MICROMAX A210 using Tapatalk
Finally we got a rom.. Awesome work bro. But camera is not capturing any pic,what can i do!!
Sent from my A210
Ashok sha said:
Finally we got a rom.. Awesome work bro. But camera is not capturing any pic,what can i do!!
Sent from my A210
Click to expand...
Click to collapse
Read my earlier post.
Sent from my MICROMAX A210 using Tapatalk

[Tool] Rayglobe Italian Knife Ver 1.7 * TWRP - Root - Debrand ** UPDATE 2-14-16 **

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Credits: @duraaraa (great guy from Xda), @inside!out, @VirusPlus, HRT Chinese team, Maximo76
1. Download this file
Ver. 1.6 ---------------------------> DOWNLOAD
2. Extract in a directory on your PC Rayglobe_Knife.exe
3. Launch this exe
XDA:DevDB Information
[Tool] Rayglobe Mate 8 Italian Knife, Tool/Utility for the Huawei Mate 8
Contributors
acer73, Inside!out, Virusplus, HRT Chinese Team, Maximo76
Source Code: http://forum.hdblog.it/index.php?/topic/49051-italian-knife-tool-by-hdblogit-huawei-mate-8/
Version Information
Status: Alpha
Created 2016-01-17
Last Updated 2016-02-06
Reserved
HELP
************************************************** ***********************************************
--------- User Manual HUAWEI MATE 8 Italian knife by Raimondo Martire (aka acer73) V1. 2 ----------
*
*
================================================== ========================================
**************The following points can be activated only with ADB and FASTBOOT active
**
*****0: FIRST START
*****1: BOOTLOADER
*****2: Recovery
*****3: Root
*****4: gapps
*****5: debrand
6: UNBRICK
7: EXTRA
8: Download EMUI
9: Thread Huawei Mate 8 on HDBlog.it
**
*****Q: Donate and Thanks? HELP (hdblog.it) X: CLOSE
================================================== ========================================
*
Before you start remember stop/freeze the antivirus because it may interfere with the download
*
================================================== ========================================
*
MENU 0: First Start
*
In this menu, 'there are two preliminary operations are the driver installation
for the proper functioning of the options adb and software download Hisuite.
Remember not to jump the menu '"First start"
because you will need to verify that you have properly enabled the option "USB debugging" in the menu 'developer
*
================================================== ========================================
*
MENU 1: Bootloader
*
In this menu 'you can use a fast tool for a fee ($4) to unlock the bootloader.
Huawei also provides for an option to unlock via email.
More information in this forum
*
NB. Unlocking the bootloader is necessary if you want to use all options of this tool
*
================================================== ========================================
*
MENU 2: Recovery
*
* 2-1 * The recovery TWRP need to install zip unsigned and root.
* 2-2 * The stock is recovery available with Huawei rom
*
================================================== ========================================
*
MENU 3: Root
*
The root, from the English "root", is a process derived from Linux and applied on
Android to get superuser rights and thus have unrestricted access to the system and to
right to modify it at will by real developers.
It is not nothing but to overcome a barrier and open the huge iron gates behind
which hides the world of modding and custom ROMs.
IMPORTANT: For the root must install the TWRP recovery and have the boot decrypt
*
================================================== ========================================
*
MENU 4: gapps
*
You can install Gapps for Huawei chinese rom. Please consider to decrypt boot before
*
================================================== ========================================
*
MENU 5: debrand
*
It really a pleasure to present this function for switch beetween chinese AL10 model to European L29 Model
*
================================================== ========================================
*
MENU 6: UNBRICK
*
It 'a menu' emergency and experimental enabled only when the smartphone is in brick state
*
================================================== ========================================
*
MENU 7: Extra
*
In this menu, 'there are more frequent reboots: recovery, bootloader and the possibility for the user
to flash their own recovery or a boot image. The files must be placed in the directory
USER
*
================================================== ========================================
*
MENU 8: Download EMUI
*
This menu 'will be active for download roms stock EMUI of the Chinese model.
*
================================================== ========================================
*
MENU 9: Thread Huawei Mate 8 on HDBlog.it
*
Italian forum when I've published first my work
*
================================================== ========================================
*
MENU D: Donate
*
This tool and 'released for purely private. Any commercial use without permission
the author will be prosecuted according to law.
If you want to keep this tool active currency the possibility to donate to the purchase of space
Web and to give me comfort with a glass of good Italian wine
*
================================================== ========================================
*
Menu?: Help
*
To choose the menu 'for help and' exclusively in Italian
*
================================================== ========================================
*
MENU X: Close
*
Closes this tool
Changelog
1.5
Smaller exe
Rayglobe Twrp recovery Multilanguage
1.3
New Twrp multilanguage
Remake Extra section with 2 new stuff
thank you for your help
I have a problem against the software does not recognize my mate 8 I have this red message <waiting for device>, and when I run a command prompt my device is recognized without problems
You are the hero we need, we just didn't know it! Massive thanks for your work mate.
lorenzw said:
thank you for your help
I have a problem against the software does not recognize my mate 8 I have this red message <waiting for device>, and when I run a command prompt my device is recognized without problems
Click to expand...
Click to collapse
You have driver problem. Have you used driver that I punt in first start command?
Extensive help please
Just looking for some more detailed help, ill post the issues I have with understanding.
Sorry if some things I ask are basic or stupid, I have never had an android phone and haven't had the opportunity to check your tool out with a phone yet.
acer73 said:
*
MENU 0: First Start
*
In this menu, 'there are two preliminary operations are the driver installation
for the proper functioning of the options adb and software download Hisuite.
Remember not to jump the menu '"First start"
because you will need to verify that you have properly enabled the option "USB debugging" in the menu 'developer
*
Click to expand...
Click to collapse
So I just need to run this command (after enabling USB debugging) and that will download everything I need to run the commands?
acer73 said:
*
MENU 1: Bootloader
*
In this menu 'you can use a fast tool for a fee ($4) to unlock the bootloader.
Huawei also provides for an option to unlock via email.
More information in this forum
*
NB. Unlocking the bootloader is necessary if you want to use all options of this tool
*
Click to expand...
Click to collapse
So whats this first menu do?
Link me to these two places?
acer73 said:
*
MENU 2: Recovery
*
* 2-1 * The recovery TWRP need to install zip unsigned and root.
* 2-2 * The stock is recovery available with Huawei rom
*
Click to expand...
Click to collapse
What do these mean?
TWRP will be installed on it if I select one?
Then what does the stock one do? Remove TWRP?
acer73 said:
*
MENU 3: Root
*
The root, from the English "root", is a process derived from Linux and applied on
Android to get superuser rights and thus have unrestricted access to the system and to
right to modify it at will by real developers.
It is not nothing but to overcome a barrier and open the huge iron gates behind
which hides the world of modding and custom ROMs.
IMPORTANT: For the root must install the TWRP recovery and have the boot decrypt
*
Click to expand...
Click to collapse
How do I get boot decrypt?
acer73 said:
*
MENU 4: gapps
*
You can install Gapps for Huawei chinese rom. Please consider to decrypt boot before
*
Click to expand...
Click to collapse
Once again, what is decrypt boot?
What happens if I dont have decrypt boot and I do this?
Also what GAPPS are included?
acer73 said:
*
MENU 5: debrand
*
It really a pleasure to present this function for switch beetween chinese AL10 model to European L29 Model
*
Click to expand...
Click to collapse
Basically this will flash the european rom on the phone?
Does it work the other way as well, european to chinese?
acer73 said:
*
MENU 6: UNBRICK
*
It 'a menu' emergency and experimental enabled only when the smartphone is in brick state
*
Click to expand...
Click to collapse
So if I brick my phone this will be able to fix it most of the time?
What kind of things does it do?
acer73 said:
*
MENU 7: Extra
*
In this menu, 'there are more frequent reboots: recovery, bootloader and the possibility for the user
to flash their own recovery or a boot image. The files must be placed in the directory
USER
*
Click to expand...
Click to collapse
So this menu gives the user the option to boot into different modes?
acer73 said:
*
MENU 8: Download EMUI
*
This menu 'will be active for download roms stock EMUI of the Chinese model.
*
Click to expand...
Click to collapse
What does this do? Flash the chinese rom?
Does that mean the chinese to international rom wouldnt work backwards, you need to use this one to do it?
So I just need to run this command (after enabling USB debugging) and that will download everything I need to run the commands?
So whats this first menu do?
Link me to these two places?
Install correct adb driver. remember to activate usb debug in developer menu
What do these mean?
TWRP will be installed on it if I select one?
Then what does the stock one do? Remove TWRP?
Twrp in a custom recovery to flash unsigned zip
How do I get boot decrypt?
In menu 3
Once again, what is decrypt boot?
What happens if I dont have decrypt boot and I do this?
Also what GAPPS are included?
Micro GApps package for chinese rom
Basically this will flash the european rom on the phone?
Does it work the other way as well, european to chinese?
Yes european rom work on chinese model
So if I brick my phone this will be able to fix it most of the time?
What kind of things does it do?
So this menu gives the user the option to boot into different modes?
You can boot in recovery or fastboot mode. Some command can be made in recovery mode other one in bootloader mode
What does this do? Flash the chinese rom?
Does that mean the chinese to international rom wouldnt work backwards, you need to use this one to do it?
Yes you can flash from chinese to european and return to chinese
Hello,
I made this tool for Honor6 and inside!out port it for Honor7 later. We both now merged our tools into one HONOR MultiTool and we still keep it "open" in .bat so anyone can use/port it for other models. I don't get why you "close" it with .exe format.
I see that you add me and inside!out as contributors but i don't want make changes into your OP, so please give me and inside!out the right credits of your port on our work into OP and your Tool.
This is the original HONOR6 MultiTool Thread and this is the port for HONOR7 MultiTool Thread.
Thank you!
Hi I know several people have already asked this, but when I run first run I just get waiting for device. In device manager there's no missing drivers. I can't see where you have the adb driver located. Is it possible to post a link to the correct driver? I was able to install hiSuit, but not able to get the device detected. Does anyone have any other ideas?
hisuite actually has the USB drivers included...
davoidd said:
Hi I know several people have already asked this, but when I run first run I just get waiting for device. In device manager there's no missing drivers. I can't see where you have the adb driver located. Is it possible to post a link to the correct driver? I was able to install hiSuit, but not able to get the device detected. Does anyone have any other ideas?
Click to expand...
Click to collapse
I am in the same situation as Davoidd and I still have not found the solution.
I'm on Windows 10 and Hisuite and adb drivers are installed
all orders that I make are not allowed via fastboot with Rayglobe Italian Knife
but I can flash the TWRP via fastboot without using Rayglobe Italian Knife
Can I use your tools for Factory Reset Protection (FRP) rest?
VirusPlus said:
Hello,
I made this tool for Honor6 and inside!out port it for Honor7 later. We both now merged our tools into one HONOR MultiTool and we still keep it "open" in .bat so anyone can use/port it for other models. I don't get why you "close" it with .exe format.
I see that you add me and inside!out as contributors but i don't want make changes into your OP, so please give me and inside!out the right credits of your port on our work into OP and your Tool.
This is the original HONOR6 MultiTool Thread and this is the port for HONOR7 MultiTool Thread.
Thank you!
Click to expand...
Click to collapse
Sorry mate. I created this thread as you can see with right credits in the first time and put your name also in contributors. I put your name in contributors in this way xda system send you an email and you can verify work just because you have choose to not receive Pm so no possibility to contact you. I don't think only to give credit in OP and tool . I'll upload new version with credit in OP according your right desire and I've modified first image for better visibility. :good:
copysat said:
Can I use your tools for Factory Reset Protection (FRP) rest?
Click to expand...
Click to collapse
No, I don't test for it. Use this option only in an emergence fase
jbmc83 said:
hisuite actually has the USB drivers included...
Click to expand...
Click to collapse
Yes right
lorenzw said:
I am in the same situation as Davoidd and I still have not found the solution.
I'm on Windows 10 and Hisuite and adb drivers are installed
all orders that I make are not allowed via fastboot with Rayglobe Italian Knife
but I can flash the TWRP via fastboot without using Rayglobe Italian Knife
Click to expand...
Click to collapse
Yes you can flash in fastboot with this command
fastboot flash recovery twrp.img
I'll see in tool why some user don't flash. Only a test if you wright
adb devices
you see a number?
acer73 said:
Yes you can flash in fastboot with this command
fastboot flash recovery twrp.img
I'll see in tool why some user don't flash. Only a test if you wright
adb devices
you see a number?
Click to expand...
Click to collapse
yes i see a number , with adb in fastboot i can flash twtrp.img with the firmware NXT-AL10_C00B129SP02 I also have with your made tool a backup of oeminfo but with the firmware NXT-AL10C00B137 I can't flash twrp.img ! (failed command not allowed)
At present I am under the firmware NXT-AL10_C00B129SP02 with TWRP and SuperSu
lorenzw said:
yes i see a number , with adb in fastboot i can flash twtrp.img with the firmware NXT-AL10_C00B129SP02 I also have with your made tool a backup of oeminfo but with the firmware NXT-AL10C00B137 I can't flash twrp.img ! (failed command not allowed)
At present I am under the firmware NXT-AL10_C00B129SP02 with TWRP and SuperSu
Click to expand...
Click to collapse
I'll change tool to ver 1.0.0.1 try with this . I'm sure that now you can flash without problem
https://www.androidfilehost.com/?fid=24369303960690339
happy to report that ur tool saved me a lot of work @acer73 im now on L29 firmware with decrypted boot, twrp and supersu installed, everything running smoothly. so far no issues with notifications, but still watching out for this...
Sent from my Huawei Mate 8 using Tapatalk

[EXPERIMENTAL][AOSP][NRD90U] Unofficial Android 7.0 Nougat build

Code:
#include <std_disclaimer.h>
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/
Hello guys, this is an unofficial build of AOSP Nougat (with tag android-7.0.0_r6). Kernel is based on CM13's, with some recent commits in kernel/common in AOSP. Sources and patches are available at the end of the post.
Note: this ROM is just for having the first taste of Nougat, and thus missing a lot of key features. I may not be able to update it regularly.
Basic hardware functionality:
Almost everything works, except video hardware encoding, which causes camcorder to fail. HW decoding works though.
Everything should be working since 20160903.
I didn't find more hardware failures, but there can be more.
And remember, the proprietary firmwares and blobs are still in the age of Marshmallow, and a system won't be complete without corresponding firmwares and blobs.
Known bugs:
1. HW disk encryption is likely broken. I reverted some commits to make cryptfs_hw build, but I'm not sure if that works. Do not try it.
2. SELinux is permissive, and init allows service without a SELinux domain to start.
3. GPS may take longer to obtain a position fix. (yes it's working... sorry for the misunderstanding)
4. Only Launcher2 is included. You may install a new one as you like.
5. No LiveDisplay and gestures except DT2W (DT2W can not be turned off via Settings app for now) Color calibration is possible, see FAQ below.
6. Default input method could be broken. Be ready to "pm install your_ime.apk" in adb shell. Fixed in 20160828
7. com.qti.dpmserviceapp may produce continous FC. You can disable it via adb shell ("su -c pm disable com.qti.dpmserviceapp"). Removed in 20160828
8. Rotating screen while playing video can cause the display to "split" Fixed in 20160903
9. Camera service and media codecs all run in the same process, eliminating one of the security enhancements of Android N. May not be fixed until new HAL and blobs are available.
So the security improvements in Nougat are not making much difference in this only-a-taste ROM. If you rely on this, it would be better to wait for official releases.
FAQs:
1. Root / Gapps?
I'm using SuperSU 2.76 stable and OpenGapps 7.0 pico. They work without any issue.
If your contacts / calendars is not syncing, try the following steps:
1. Goto Settings > Apps, tap "Show system" in menu
2. Find "Google Contacts Sync", tap on it, tap "Permissions", turn on everything
3. Go back to Detail screen, clear its data
4. Go back to app list, clear "Contacts Storage"' data
5. Do the same for calendars (2-4)
6. Reboot
Click to expand...
Click to collapse
2. F2FS?
I did not test this myself... But kernel has support already (of cource, it's from CM) so you may have a try. Remember to backup!
EDIT: Some users reported that F2FS partitions are corrupted. If you are using F2FS, maybe you should wait.
Click to expand...
Click to collapse
3. Menu key / App switcher?
Menu key now acts as recents, since I don't think the former is as useful as the latter. And there is no more lag while tapping home button since we don't check for double tap anymore.
Click to expand...
Click to collapse
4. TWRP shows error?
If that's two lines of "log", you can safely ignore it.
If there is something else, please stop and post it here.
If you are using MultiROM, you may modify update-script. Read the first ~8 pages and you will find it.
Reference: I'm using official TWRP 3.0.2 w/o MultiROM This recovery didn't get replaced by stock one...
Click to expand...
Click to collapse
5. File manager (to install APKs)?
http://forum.xda-developers.com/showpost.php?p=68402423&postcount=73
Click to expand...
Click to collapse
6. Disable HW keys, enable soft keys, screen color calibration?
Disable HW keys: echo 0 > /proc/touchpanel/keypad_enable (needs repeat on reboot)
Enable soft keys: echo "qemu.hw.mainkeys=0 >> /system/build.prop (once)
Screen color calibration: echo "32768 31784 27852" > /sys/class/graphics/fb0/rgb (needs repeat on reboot, change the values as you need. This example is 100% R, 97% G, 85% B)
Optionally you can enable color enhancing: echo 1 > /sys/class/graphics/fb0/color_enhance
Click to expand...
Click to collapse
Screenshot spoiler
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Flashing Guide by @The Dork Knight Rises
In the 3rd post. Direct link: http://forum.xda-developers.com/showpost.php?p=68397804&postcount=3
Video hands-on by @savadam
https://www.youtube.com/watch?v=r54vWk-Azh8
Thanks for all your support!
Download:
20160919: Mirror 1: https://drive.google.com/open?id=0BwkmhbR5VHpAYWRKd1owSUNudEU Mirror 2: https://mega.nz/#!fEk1CTyJ!F8rdnqT_oiipP-tHCuzFGFvsQGmUV6LRaD2t81N2WIA
You can still use HALs from 20160906 if you want.
(And if you are posting this somewhere else, please include the HALs in your post)
Older versions:
20160918: Mirror 1: https://drive.google.com/open?id=0BwkmhbR5VHpAMWZ4OEx6Unp5bU0 Mirror 2: https://mega.nz/#!rdlkgboI!LQuFDtcppbizC_7Tfww1uWAmhw-lYuxjAlrhg9Z0tuQ
20160910: Mirror 1: https://drive.google.com/open?id=0BwkmhbR5VHpAdGVTV3V0ekZaWHM Mirror 2: https://mega.nz/#!XEsTESpR!QDa7he2jdPCeIsbMY1vJAlCZ0RokAKV0IdtyuB0R-yc
20160906: Mirror 1: https://drive.google.com/open?id=0BwkmhbR5VHpAWHNFb0xyYlBZM3c Mirror 2: https://mega.nz/#!zBVX1DTZ!S-LnpIEgJqn1r7So6QmEoD_APUqDnp93XbP-Ug__XBk
CAF and original AOSP HALs: https://drive.google.com/open?id=0BwkmhbR5VHpAaGdCQmxDUWgxQlU
Note on the HALs:
AOSP HALs (msm8996 display + msm8974 media) can not record screen, but they "seem" to make the system smoother. (msm8974 display HAL cannot be used because it corrupts the display when rotating screen with video playing)
CAF HALs (both based on vanilla CAF LA.BF.1.1.3_rb1.13) can record screen but "seem" not to be so efficient as AOSP ones.
The HAL included in the ROM are the AOSP variant.
20160903: Mirror 1: https://drive.google.com/open?id=0BwkmhbR5VHpATlN5T29WTS01Qkk Mirror 2: https://mega.nz/#!OcFlTDDK!EYiNpfE-9Pxx2wu4Oto7kO_oevfe0bMkXOTdhP1HDZc
20160831: Mirror 1: https://drive.google.com/open?id=0BwkmhbR5VHpAVE1WR2xYd180MzA Mirror 2: https://mega.nz/#!jE92iSAD!pl0NMU6PPY3UNXE5DTDBKLUd4sFLG6fNTaUUMI0xdzg
20160828: Mirror 1: https://mega.nz/#!XdlXFDBQ!p7E0N64IEkGHn4GBzOZQDTCgR4KdD00O0dRwJlEnvcw Mirror 2: https://drive.google.com/open?id=0BwkmhbR5VHpAczA2T2g0RUZRS3c
20160827: https://drive.google.com/open?id=0BwkmhbR5VHpAUVdWUHNlc0lHZWs
Note: please read "known bugs" section before flashing! Also you can read the guide below.
When updating the ROM, just dirty-flash new build and Gapps (if you use them).
In order to prevent your recovery from being replaced by the stock one, flash SuperSU along with the ROM.
Sources:
Kernel: https://github.com/updateing/android_kernel_oneplus_msm8974/tree/nougat
Device: https://github.com/updateing/android_device_oneplus_bacon/tree/nougat
Build system: https://github.com/updateing/platform_build/tree/custom-kernel
And there are a lot more repos I didn't fork. The changes there as well as local_manifest are here:
20160918+ Check GitHub
20160910 https://drive.google.com/open?id=0BwkmhbR5VHpAcmo1RjhPd0N1c3c
20160906 No new patches except the HALs. For AOSP HALs, check previous patch archive and Sony's guide. For CAF HALs, just cherry-pick "Fix clang build" from CM.
20160903 https://drive.google.com/open?id=0BwkmhbR5VHpAQXFqZEJCT21UNDA
20160831 https://drive.google.com/open?id=0BwkmhbR5VHpASW54QnR4eGFlR1E
20160828 https://drive.google.com/open?id=0BwkmhbR5VHpAOEx2OWNYcE1xU2s
20160827 https://drive.google.com/open?id=0BwkmhbR5VHpALXdkNkptRnBLMkU
Changelog:
20160919
Fixed Fackbook crash by avoiding preloading libboringssl-compat.so (CM camera HAL is the only camera HAL that does not require this)
Updated BT configuration (please test if it has any side effect. Sometimes you need to search twice to find your Bluetooth gadgets.)
Tried to fix network location (added Google's network location provider)
20160918
Reverted to previous "stub" power HAL. May fix lagging and unusual power consumption noticed by some users.
Tried to fix NFC FW download mechanism. May fix non-working NFC for some users.
20160910
Updated to NRD90U (android-7.0.0_r6)
Switched to CM/QCOM power HAL. The original power HAL is more like a placeholder.
Now on Tap can be launched by long-pressing home button
Switchable WebView implementation, thanks to @fards here
Note:
1. If you are experiencing display issues (such as screen flicker with FLV SW decoding), try switching on "Disable HW Overlay" in Development Settings.
2. If you need multi-user feature, remove /system/priv-app/com.qualcomm.location. Otherwise the system will crash. It was accidentally added in this build.
20160906
Switched back to AOSP HALs to increase performance, but screen recording is broken again. You can choose CAF HALs listed above to fix that. Camcorder and HW encoding work with both variants, no need to worry.
Updated media profiles. Front camera knows that it is not capable of 1080p recording.
20160903
Fixed HW encoder and camcorder (they are different issues, though related) (and switched to CM13 media HAL)
Fixed display corruption while rotating screen with video playing (by switching to CM13 display HAL, don't know which lines of code fixed that)
DT2W can be turned off via Settings
Added Reboot option in power menu
20160831
Fixed crash in World Clock page when selecting countries/regions
Fixed hang in Developer Settings when the ROM is installed as secondary
Fixed crash when taking photos with HDR on
Added support for kexec
Added Stk
20160828
Fixed default input method FC
Remove com.qti.dpmservices to prevent FC
Dev: updated build system to finally automate everything
20160827
Initial build
Click to expand...
Click to collapse
Notes on the sources:
1. Build system produces correct boot.img in $OUT, but the boot image in OTA zip still has no DT included. Fixed in 20160828
2. Some fixes are really "dirty" (as I'm not able to find a proper way)...
3. Some JNIs fail to build (lots of C++ symbols no found). You may try linking C++ libs dynamically (c++_static -> c++_shared) to avoid this. See 20160828 patches, packages/inputmethods/LatinIME for example.
4. Some apps require android-8 ndk, but the earliest version in the tree is android-9. A symlink will do (or you can change the Android.mk in app) but I'm not really sure this will not introduce any bug.
5. Android N split mediaserver into multiple processes to improve security, such as cameraserver, mediacodec, etc. But camera blobs and old HALs were not designed like this. They assume they run in the same process, thus a buffer created by blobs are being used everywhere, which will cause illegal memory access under Android N. I reverted lots of patches about this, forcing camera and codec services to run in the mediaserver process as before - security compromised with functionality, again.
Hope you enjoy this.
I am going to try this out, thanks @updateing for your work:good:
If I could find fixes then I would send an pull request.
The All-In-One Post
Oh look at the time...it's flashy time already? XD
Screenshots:
(Layers themes work. Use Substratum app)
Guide to flashing this properly (TWRP v3.0.2-0):
(THIS GUIDE IS MAINLY FOR THE FIRST BUILD 20160827. AS I AM RUNNING IT SMOOTHLY, I DO NOT PLAN TO UPDATE TO 20160828, AS IT HAS SOME MINOR FIXES, ALREADY COVERED IN MY GUIDE.
IF HOWEVER, YOU'RE FLASHING 20160828 OR LATER BUILD, HERE'S WHAT YOU SHOULD DO DIFFERENTLY:
-Flashing Google keyboard is not mandatory, as default input mode has been fixed
-adb steps do not need to be performed as the com.qti.dpmserviceapp has been removed
-You probably shouldn't flash the SystemUI Tuner mod zip, as the SystemUI APK from previous build may not be compatible with new build. If you flash it on 28 build and have SystemUI FCs or missing SystemUI, just reflash ROM, and don't flash the mod.
REST OF THE GUIDE REMAINS THE SAME)
(This guide is for flashing as primary ROM without MultiROM. MultiROM guide by @7u5h4r: http://forum.xda-developers.com/showpost.php?p=68413163&postcount=242)
TL;DR version (that means short version)
http://forum.xda-developers.com/showpost.php?p=68552389&postcount=1172
Download ROM zip from OP and Google Keyboard flashable zip, as well as any of the zips I linked below.
Wipe your device (data, cache, dalvik/ART cache; preferably even system, just to be as "clean" as possible)
(NOTE ABOUT DIRTY FLASHING:
-If you dirty flash this ROM (eg. flashing newer build), you will need to flash GApps again along with the ROM zip as GApps are not preserved
-This ROM actually booted for me even on a dirty flash from an MM custom ROM, and as a result I didn't face a lot of the problems you'd face on clean flash (GApps crashes, continuous qti app FCs, etc)
But a lot of my apps were crashing until I reinstalled them, and in any case, it is not advised to dirty flash when coming from MM)
Flash ROM zip and keyboard zip, optionally any of the following addons (DO NOT FLASH GAPPS YET):
-SuperSU (v2.68+) for root
-Any of the mods I linked below
-Any other mods like Viper4Android etc (AT YOUR OWN RISK)
Boot into the ROM. you'll probably see a lot of crashes, ignore them, and just find a PC for the next step
(Optionally, you could try to enable Developer Options by tapping past the FC dialogs, once you have DevOps enabled, you'll see an option to mute FC notifications till next boot)
Using ADB on your PC, disable the com.qti.dpmserviceapp package by running following commands:
Code:
adb devices
You should see a device in the list of devices connected
Code:
adb shell
pm disable com.qti.dpmserviceapp
If you get error with permissions, you may need root. If your device is rooted:
Code:
su
pm disable com.qti.dpmserviceapp
(SKIP 6, 7 & 8 if you do not need Google services)
Now reboot into recovery and flash a compatible GApps package (USE 7.0 GAPPS ONLY)
Boot into ROM
Go to Settings>Apps
Find Google Play Services, and go to its Permissions. Enable essential permissions. Now Play Services won't keep crashing on you. Also find Google Contact Sync and give it permission to access Contacts.
Go to Settings>Accounts and add your Google account
Profit
Praise DuARTe
Hit Thanks if this helped
Here's some helpful zips for you guys!
My flashable zip to ENABLE Navbar/softkeys (same as the one on the MM thread) https://drive.google.com/open?id=0B2Y1syM7UNuDYVRhM3BTYVA3SXc
Flashable zip to DISABLE HW keys
https://drive.google.com/open?id=0B2Y1syM7UNuDSFZwUHNLQ0RfdXM
Flashable zip to ENABLE HW keys (revert changes made by zip above)
https://drive.google.com/open?id=0B2Y1syM7UNuDalVLVzd0SFdLekk
Flashable stock bootanimation (same as the one in MM thread; since this ROM doesn't really have a bootanimation and uses the basic fallback bootanimation)
https://drive.google.com/open?id=0B2Y1syM7UNuDelFPZVh6dmxSR2c
Flashable zip to ENABLE Hidden SystemUI Tuner Features (thanks to @AL_IRAQI, see his original guide here)
This one was tricky, my first time decompiling an APK. I was getting some crashes at first, but I think this ZIP should work fine (I tested it on a dirty flash, and it works)
https://drive.google.com/open?id=0B2Y1syM7UNuDd0JBV2ViMXl1bnc
Flashable Google Keyboard 5.1
https://drive.google.com/open?id=0B2Y1syM7UNuDbnBmdEtWZlRlNlk
Flashable Nexus Launcher (credits to uploader)
https://www.androidfilehost.com/?fid=24588232905722237
Replace the stock Power Menu with an extended custom power menu (thanks to @nofx161):
See his post
Link to app
Layers themes are supported, use Substratum app (Play Store link) to apply
(ROOT NEEDED)
NOTE: Themes made only for Substratum will not work (properly) as this ROM doesn't support Substratum (that will need patches to ROM source). Only which support RRO/Layers will work without any issues.
Wow! Great work
Subscribed!
thanks for your work dude
Cool, thanks, gonna try asap
Enviado desde mi A0001 mediante Tapatalk
Great! Thank u dev!
updateing said:
2. SELinux is permissive, and init allows service without a SELinux domain to start.
Click to expand...
Click to collapse
Which sepolicy did you use? I am porting to a different device and Im currently trying to fix neverallows which is painful but I think I merged a commit to qcom/sepolicy which allows domain to start (im not very good in sepolicy). Its based off Cyanogenmod qcom/sepolicy repo. If you want to take a look its here android_device_qcom_sepolicy-1 and I had to add one thing to platform_system_sepolicy. I hope we'll be able to fix sepolicy soon.
Awesome.... Downloading already.
Awesome! Has anyone tried If gapps work?
Flashed it. But i get a FC all the time
com.qti.dpmserviceapp has stopped.
I cant do anything..?
Deltastylez said:
Flashed it. But i get a FC all the time
com.qti.dpmserviceapp has stopped.
I cant do anything..?
Click to expand...
Click to collapse
Really sorry that I forgot this. You could do "pm disable com.qti.dpmserviceapp" in adb shell (su first if it asks so)
A fellow hamster I see! Nice one.
updateing said:
Really sorry that I forgot this. You could do "pm disable com.qti.dpmserviceapp" in adb shell (su first if it asks so)
Click to expand...
Click to collapse
I am kind of a newbie to ADB
Could you perhabs tell me how to? step a step?
Thanks!
Deltastylez said:
I am kind of a newbie to ADB
Could you perhabs tell me how to? step a step?
Thanks!
Click to expand...
Click to collapse
You may find a lot of adb tutorials around...
But if there is a mute option in the FC dialog, you can mute it and disable in Settings.
updateing said:
Really sorry that I forgot this. You could do "pm disable com.qti.dpmserviceapp" in adb shell (su first if it asks so)
Click to expand...
Click to collapse
updateing said:
You may find a lot of adb tutorials around...
But if there is a mute option in the FC dialog, you can mute it and disable in Settings.
Click to expand...
Click to collapse
well, getting this error
" Error: java.lang.SecurityException: Shell cannot change component state for com.qti.dpmserviceapp/null to 2 "
Never mind, fixed
updateing said:
You may find a lot of adb tutorials around...
But if there is a mute option in the FC dialog, you can mute it and disable in Settings.
Click to expand...
Click to collapse
i've tried through adb shell but it doesn't work shell cannot change component state for com.qti.dpmserviceapp/null to 2 moreover it is not possible to disable it in settings thank u for your job
anyone!! please any reviews??
Knew it wouldn't be long before the famous Bacon machine got that great taste of nougat :good:
holy crap holy crap
EVERYONE BOARD THE HYPE TRAIN! CHOO CHOO!

[M-ROM][7.1]XUN_Z1C|v2.5.0[Not Chinese Version]

[M-ROM][7.1]XUN_Z1C|v2.5.0
[Not Chinese Version]​
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Code:
#include
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/
ROM name: XUN/CARBON Xperia UI Nougat
Original author: machao44/M-ROM
Description:
It is an CARBON-CR-5.1-based ROM for Xperia Z1 with some Sony Official Sources.. Topic on xda (the author no longer uploads new versions on xda).
My build is purged of chinese programs. Also I made some translations and improvements.
Features:
- Many built-in Sony libraries. The ability to install many original applications from Sony.
- Service menu (*#*#7378423#*#*). Is not completely working.
- There is one more service-menu *#*#4636#*#*. Checked - works and really switches modes. Just do not press "Select radio station" -> "USA". Otherwise you will have to reflash the modem-part of ROM.
- Ability to kernel selection during installation: Basic/LOS. LOS kernel is: slightly more smooth interface due to the "Disable overlay fix", and slightly lower power consumption. Probably something else
- Android security patch level: October 5, 2017
- Wi-Fi Direct
- Saving / limiting traffic
- Media server
- USB / Bluetooth tethering
- Mobile Access Point
- X-Reality for moblie
- ClearAudio +
- Dynamic Normalizer
- Surround sound (VPT)
- S-Force Front Surround
- Equalizer
- Headphone selection
- STAMINA / Ultra STAMINA
- Sony Battery Care
- Speed of Internet connection in the status bar
- Call recording
- Blocking numbers
- Ability to hide navigation bars
- Smooth Sony camera with Timeshift working.
- Brevent - preventing startup programs.
- Xperia Keyboard
System applications. Are selecting to install:
- DUALSHOCK™ series Game controller. Set the PlayStation controller to work with your Xperia™
- Smart Connect™. Connect your Xperia™ accessories and create an events
- What's new. Explore new game apps and media content
- Google services
- Sony Notes
- Xperia™ Chinese input method
- Xperia™ Small Apps. Miniature apps that can run on top of other applications on the same screen, to enable multi-tasking
- Sony E-mail
- Sony Video & TV SideView - Remote. Using a phone as a TV remote control for the home
Camera functions. Are selecting to install::
- Sweep Panorama. Rotate the camera to take panoramic photos
- 4K and TimeShift video. 4K super high resolution recording and 120fps recording
- Sound Photo. Take a picture with a background sound (bird sounds, etc.)
- Timeshift Burst. Pick the best shots from the sequence of photos taken before and after the shutter
- AR effect. The use of virtual scenes and characters to take pictures and videos
- Creative effect. Select the effect of artistic photos and videos
- Face in Picture. Use your front camera and main camera to take your face into pictures and videos
- Style portrait. Real-time preview a variety of beauty effects Imagine self-timer moment
- Background defocus. Create a photo with one object in sharp focus, against a beautifully blurred background
Instructions:
1. Unblock BL and flash real-recovery (TWRP):
- Download to PC file with TWRP (for example) twrp.img.
- On your phone, enter in the fastboot mode: Turn off the phone, hold the volume up, connect the usb cable, the indicator should turn blue.
- On the PC, open a command prompt and run the command: fastboot flash recovery C:\file_path\twrp.img
2. Make wipes: data, cache, system
3. Flash archive zip with ROM.
4. Gapps and SuperSU already embedded in the archive and are selecting to install.
5. Reboot
Bugs/Issues:
Usual for all Nougat for z1c:
- Not working AndroidPay through NFC.
- Sony Camera face/smile recognition is invalid
- Can't create SIM-Contacts/Import contacts to SIM
Other:
- Sony theme function is not normal
- Standard screen-recording app sometimes causes stuck. Similar programs are OK.
- Changing time zone causes reboot
- Google account settings don't work
- Standard call recording don't work
- Looks like "OK Google" voice search does not work
- The two upper STAMINA modes do not receive notification from social networks apps, even when adding a app to an exception
- During saving changes in the white balance in the settings, it will force close, but the changes will saved until you reopen it
There were mentions about:
- Auto-switching to 4g, while "only 3g" (probably switching only visual, but not real)
- Wifi and mobile signal worse approx by 10% than on stock ROM.
- There are problems with FM radio. You can listen to either stereo at a fixed volume, or mono, but with a working controller. We need to fix the mixer_paths file.
Probably don't work/work inproperly. Need testing:
- Screen Mirroring
- MHL
- Wi-Fi Direct
- Usb tethering
- Portable wi-fi hotspot
- Bluetooth tethering
- MMS
- Android wear/Bracelet
- Perhaps SIM with PIN causes reboot
- Perhaps problems with sending/receiving some SMS
Downloads:
v2.5.0 (Updated 09/04/2018): Mirror 1
v2.5.0: Mirror 1
v2.4.0: Mirror 1
Changelog:
Updated 09/04/2018:
- Added mpdecision since this ROM did not have a cpu hotplug driver and the all cores was constantly online. A longer battery life is expected.
Updated: 17/12/2017
- Add Setup with Basic Kernel and Magisk. Without bootloop
- Add "SafetyNet pass" module for all Setups with Magisk
Updated: 16/12/2017:
- Added choosing of the "Setup(1/2/3/4/5)". Every setup include different kernel, root-manager(SuperSU/Magisk/Without ROOT), SElinux mode.
e.g. with another kernel interface working some smooth.
- Added XposedInstaller 3.1.4 (Are selecting to install)
This is the proper way to install the Xposed. Open this program. Select the option to install Xposed through the recovery. Reboot
- Add FM-Radio app (Are selecting to install)
It's working for me
- Added "Unofficial Cyberian". (Are selecting to install)
Add FullHD [email protected] and extended ISO, but Sound Photo and 8MP will not work (also only 2MP will be in Backgroud Defocus)
- Added the ability to delete some other apps
v2.5.0:
- Update package to 20171120
- Add double-click to status-bar for screen lock
- Add "Dark" theme in "Display"->"Theme"
- Update wi-fi config
Thanks and credits
CarbonROM team
LineageOS team
mkdmc
munjeni
nailyk
rcstar6696
Sony
SuperLamic
tomascus
XDA
xkeita
Contributors
machao44/M-ROM
Sources:
http://bbs.gfan.com/android-9188573-1-1.html
http://bbs.gfan.com/android-9196367-1-1.html
ROM Tencent QQ feedback group: 331452608
ROM OS Version: 7.1.2 Nougat
ROM Kernel: Linux 3.4.x
Based On: CARBON-CR-5.1-MOO-WEEKLY-honami-20170905-1117
Version Information
Status: Testing
Current Version: v2.5.0
Release Date: 2017/12/10
Last Updated: 2017/12/17
Screenshots:
Here and Here
Thanks for your job. Does the FM radio work?
Is kernel stock rom 236? Do you have last security patches?
Ramon españa said:
Thanks for your job. Does the FM radio work?
Is kernel stock rom 236? Do you have last security patches?
Click to expand...
Click to collapse
Doesn't have built-in FM-radio, but it works fine through another app.
Android security patch level: October 5, 2017
What's app for radio FM ready? Please
Ramon españa said:
What's app for radio FM ready? Please
Click to expand...
Click to collapse
Spirit2 Real FM Radio
Don't know if you saw posts on other M-ROM threads, but there was a strange issue in 2.3 and 2.3
1, where the rom wouldn't boot without SuperSU. No matter if you flashed original unmodified boot img or if you tried to flash different superuser, always bootloop, unless SuperSU modified boot img was there. Personally I don't like SuperSU, and I felt a little sketchy that it was like that...
Is SuperSU included in Aroma, and did you test without it, and confirm that it boots? Thanks
Also I'm on Z3c mainly now. Any chance of a Z3c version?
Can't DL on yandisk pls mirror it
levone1 said:
Don't know if you saw posts on other M-ROM threads, but there was a strange issue in 2.3 and 2.3
1, where the rom wouldn't boot without SuperSU. No matter if you flashed original unmodified boot img or if you tried to flash different superuser, always bootloop, unless SuperSU modified boot img was there. Personally I don't like SuperSU, and I felt a little sketchy that it was like that...
Is SuperSU included in Aroma, and did you test without it, and confirm that it boots? Thanks
Also I'm on Z3c mainly now. Any chance of a Z3c version?
Click to expand...
Click to collapse
I didn't read those threads, version 2.4 is the first one, where there is support for z1c.
I confirm that we have bootloops without SuperSU or with another root manager.
Have you tried install another version of supersu?
P.S.: I will try make z3c version, but probably some things can not be done, because I do not have z3c.
nhicko95 said:
Can't DL on yandisk pls mirror it
Click to expand...
Click to collapse
added Mirror 2
dmgZero said:
added Mirror 2
Click to expand...
Click to collapse
Thanks
Still can't download from mirror 1& 2 maybe try on basketbuild or mediafireand the simcard is working? Unlike on z1?
nhicko95 said:
Still can't download from mirror 1& 2 maybe try on basketbuild or mediafireand the simcard is working? Unlike on z1?
Click to expand...
Click to collapse
Mirror 2 is updated. I'll test sim later
dmgZero said:
Mirror 2 is updated. I'll test sim later
Click to expand...
Click to collapse
Thanks Sim is working
Double tap to wake not working
nhicko95 said:
Double tap to wake not working
Click to expand...
Click to collapse
This was to be expected. Double-tap is not possible at the hardware level. Apparently the author was simply too lazy to remove the item from the menu.
dmgZero said:
This was to be expected. Double-tap is not possible at the hardware level. Apparently the author was simply too lazy to remove the item from the menu.
Click to expand...
Click to collapse
It would be possible to add a gesture to wake something like that and boot logo seems to large to fit in bottom of the screen
Hey! I really like this rom, I've been waiting for a rom like this. The only thing is not working(at least for me) the sim card.The phone boots up(btw for me the boot logo,not the animation, is messed up.) It boots, and then asks for the sim card pin. After I write in ,it freezes, and it restarts. (it doesn't even put me in the setup guide)Without the SIM card, the rom is working perfectly fine. Please help! I really like that rom!
¥DarkWolf¥ said:
Hey! I really like this rom, I've been waiting for a rom like this. The only thing is not working(at least for me) the sim card.The phone boots)btw fore me the boot logo)not the animation) is messed up.) It boots, and then asks for the sim card pin. After I write in ,it freezes, and it restarts. (it doesn't even put me in the setup guide)Without the SIM card, the rom is working perfectly fine. Please help! I really like that rom!
Click to expand...
Click to collapse
In which country do you use the phone?
Hi. I installed [M-ROM] [7.1] v2.4.0 [amami] [Nougat 7.1.2] and I'm testing the third day. I really like the software, as if I got a new phone, for which I thank you very much. There are small bugs, they are not very significant, except for one: when connected to a computer via a USB cable, it does not see it. Charged, yes. Only the phone memory is visible if the phone is switched to TWRT?! Also there are no themes installed. In terms of productivity, ANTUTU is gaining 53.535?
As68 said:
when connected to a computer via a USB cable, it does not see it. Charged, yes. Only the phone memory is visible if the phone is switched to TWRT?! Also there are no themes installed. In terms of productivity, ANTUTU is gaining 53.535?
Click to expand...
Click to collapse
It works for me. I clicked on the item in the notification menu and chose "Transfer File".
Didn't check for Antutu yet

Categories

Resources