Part 1 - How to remove 01:02 flip:
I write this manual because I find there are people using wrong way to get rid of this nasty "feature", which will cause clock stuck or Manila starts with 0:00AM. Here I provide a proper way to remove this "feature":
1. Download LuaTool(Thanks Co0kieMonster), and make sure you know how to use Command Line.
2. Grab 5fa4d4b7_manila from Manila Home to the same folder as LuaTool.
3. Open Command Line, input "LuaTool /decompile 5fa4d4b7_manila"(without the quotes) and enter. You may not get 100% sucess rate but that's okay.
4. Open 5fa4d4b7_manila.lua that just generated by LuaTool, search for "DoFlip", and you will find something like this:
Code:
Below comes from Manila_Home_2_5_20111612_0, other versions may differ:
local l_28_0 = _application.Store:GetIntValue(Lifetime_Application, "ShowCacheHomePage")
if l_28_0 == 1 then
if _TickControlForClock:CheckBoundary() then
ClockHelper:DoFlip()
else
ClockHelper:SetTimeInstantly()
end
else
local l_28_1 = _application.Store:GetIntValue(Lifetime_Application, "AnimationForHomeKey")
if l_28_1 == 1 then
if _TickControlForClock:CheckBoundary() then
ClockHelper:DoFlip()
else
ClockHelper:SetTimeInstantly()
end
end
end
Simply replace all those "DoFlip" with "SetTimeInstantly", or you can reconstruct the code structure like below:
Code:
local l_28_0 = _application.Store:GetIntValue(Lifetime_Application, "ShowCacheHomePage")
if l_28_0 == 1 then
ClockHelper:SetTimeInstantly()
else
local l_28_1 = _application.Store:GetIntValue(Lifetime_Application, "AnimationForHomeKey")
if l_28_1 == 1 then
ClockHelper:SetTimeInstantly()
end
end
This can reduce internal operations in Manila.
5. After editing the code, save the file and in the Command Line, input "LuaTool /compile -s -r n 5fa4d4b7_manila 5fa4d4b7_manila.lua"(this "n" should be the function number of the edited function. In this example, it's 28) and enter.
6. Overwrite the original 5fa4d4b7_manila with the edited one.
Part 2 - How to make a CDMA SMS fix for Manila 2.5:
This fix can fix the SIM error when you send a SMS from a CDMA2000 phone in Manila 2.5 Classic Messaging Page. To enable Classic Messaging Page, import these registry keys:
Code:
[HKEY_CURRENT_USER\Software\HTC\Manila]
"Manila://PeopleDetail\\peopleMessageClassic.page.hidden"=dword:0
"Manila://PeopleDetail_SIM\\peopleMessageClassic.page.hidden"=dword:0
"Manila://PeopleDetail\\peopleMessage.page.hidden"=dword:2
"Manila://PeopleDetail_SIM\\peopleMessage.page.hidden"=dword:2
Then let's start making this fix:
1. Download LuaTool(Thanks Co0kieMonster), and make sure you know how to use Command Line.
2. Grab 57a92846_manila from Manila People to the same folder as LuaTool.
3. Open Command Line, input "LuaTool /decompile 57a92846_manila"(without the quotes) and enter. You may not get 100% sucess rate but that's okay.
4. Open 57a92846_manila.lua that just generated by LuaTool, search for "SIM", and you will find something like this:
Code:
if not l_43_2.bIsSIMPresent then
trace("[peopleMessage.lua] : SIM is not present")
ShowDialog(Locale:GetString("IDS_NOSIMCARD"), Locale:GetString("IDS_NOSIMCARD_DESP"), "OK")
return
end
and this:
Code:
if not l_43_2.bIsSIMReady then
trace("[peopleMessage.lua] : SIM is not ready")
l_43_2:OpenPINCodeDialog()
return
end
Simply delete these two part of code.
5. After editing the code, save the file and in the Command Line, input "LuaTool /compile -s -r n 57a92846_manila 57a92846_manila.lua"(this "n" should be the function number of the edited function. In this example, it's 43) and enter.
6. Overwrite the original 57a92846_manila with the edited one.
Hey everyone,
I am looking for a way to activate sleep mode of my chromebook manually in order to save battery without having to log out or power off all the time (it's connected to an external display, so closing the lid doesn't trigger it).
So far I found out that calling "powerd_dbus_suspend" from the shell does the trick, but as you can imagine, using the shell and actually typing the command every time is not really a solution.
Is there a way to create a chrome os app that executes this program call, so I can put it in my shelf and just click it to activate sleep?
I'm not really good at .json, maybe there's a way? Or any other suggestions?
Thanks alot!
Markus
I would like to know it too. Anyone?
Sneets said:
Hey everyone,
I am looking for a way to activate sleep mode of my chromebook manually in order to save battery without having to log out or power off all the time (it's connected to an external display, so closing the lid doesn't trigger it).
So far I found out that calling "powerd_dbus_suspend" from the shell does the trick, but as you can imagine, using the shell and actually typing the command every time is not really a solution.
Is there a way to create a chrome os app that executes this program call, so I can put it in my shelf and just click it to activate sleep?
I'm not really good at .json, maybe there's a way? Or any other suggestions?
Thanks alot!
Markus
Click to expand...
Click to collapse
Run a tiny web server like lighttpd in the shell on a weird port, restrict to localhost. Set up index.php to run system (whatever);
Then bookmark the 127.0.0.1: xxxx URL
Which system call invokes power_dbus_suspend?
Thanks Parrotgeek1. Working off your excellent suggestion I installed a lightweight local server on ChromeOS (Web Server for Chrome with the 200 OK! icon) and built a small framework app that is served from local storage. I'm all set up to call chrome.app.??? from my JavaScript. Which API provides the power_dbus_suspend capability? I looked through the Power and System APIs and I don't see anything. - Thanks!
Sneets said:
Hey everyone,
I am looking for a way to activate sleep mode of my chromebook manually in order to save battery without having to log out or power off all the time (it's connected to an external display, so closing the lid doesn't trigger it).
So far I found out that calling "powerd_dbus_suspend" from the shell does the trick, but as you can imagine, using the shell and actually typing the command every time is not really a solution.
Is there a way to create a chrome os app that executes this program call, so I can put it in my shelf and just click it to activate sleep?
I'm not really good at .json, maybe there's a way? Or any other suggestions?
Thanks alot!
Markus
Click to expand...
Click to collapse
Have you tried this simple extension? Keep Awake
https://chrome.google.com/webstore/...lb?utm_source=chrome-app-launcher-info-dialog
What I do is have the shell tab pinned, and press [up arrow] for the command then hit [enter]. Probably not ideal if you use the shell a lot as you have to step through recently used commands.
Re: Pkt_Lnt's post
Thanks Pkt_Lnt. That app only deals with disabling the normal sleep behavior, not causing it, and in particular not causing it when an external monitor is connected. I'm looking for something like Sneets has requested, to invoke a powerd_dbus_suspend command that will force the system to sleep (and turn off an external monitor). Per Parrotgeek1's comment, I've got a little app now sitting on the shelf that is all set to call some system command to invoke powerd_dbus_suspend, only I'm looking for what command to call, from JavaScript.
I managed to find a way to do something similar with the Secure Shell app. During the process of figuring it out, I also found that I was able to create a homescreen shortcut on my Android tablet which when tapped sends a shell command to the Chromebook.
This method might be overkill somewhat, but, anyway, what I did was as follows:
Installed Secure Shell extension; setup sshd on the Chromebook (by making a symlink in /etc/init/ pointing to /usr/share/chromeos-ssh-config/init/openssh-server-conf); rebooted; added public key from ConnectBot (Android app) to ~/.ssh/authorized_keys in order to test connection; setup Android homescreen shortcut to send shell command; created profile in Secure Shell app on Chromebook to connect to [email protected]/my local IP address; generated keys on Chromebook (in ~/.ssh); added generated public key to ~/.ssh/authorized_keys; imported newly-generated private/public key pair within Secure Shell app (one by one); created bookmark link to [email protected] profile in shelf, and, finally, added required command to profile in Secure Shell.
It works well! It looks like any command can be added to the 'Arguments' field in Secure Shell, with the syntax:
Code:
-- thecommand
Although I guess commands that need sudo would require a connection to [email protected], instead of chronos. (-t argument lets you use sudo, but then sending a line break/ENTER seems to be needed)
The window opened with the click does hang around - I haven't figured out if it's possible to avoid this - but it does at least seem to persistently remember the size and position to which it's set.
I posted up some further details at http://nolirium.blogspot.com/shell-command-shelf-shortcut-chromeos.html
Impressive! But a bit more than I'm looking to do
@Nolirum - I read your blogspot doc and your procedure's pretty impressive. Frankly it's a little beyond me and beyond what I'm looking for. If you ever run across a way to invoke powerd_dbus_suspend a little more directly please post here as well. You clearly have a strong grasp of the issues!
Nolirum said:
I managed to find a way to do something similar with the Secure Shell app. During the process of figuring it out, I also found that I was able to create a homescreen shortcut on my Android tablet which when tapped sends a shell command to the Chromebook.
This method might be overkill somewhat, but, anyway, what I did was as follows:
Installed Secure Shell extension; setup sshd on the Chromebook (by making a symlink in /etc/init/ pointing to /usr/share/chromeos-ssh-config/init/openssh-server-conf); rebooted; added public key from ConnectBot (Android app) to ~/.ssh/authorized_keys in order to test connection; setup Android homescreen shortcut to send shell command; created profile in Secure Shell app on Chromebook to connect to [email protected]/my local IP address; generated keys on Chromebook (in ~/.ssh); added generated public key to ~/.ssh/authorized_keys; imported newly-generated private/public key pair within Secure Shell app (one by one); created bookmark link to [email protected] profile in shelf, and, finally, added required command to profile in Secure Shell.
It works well! It looks like any command can be added to the 'Arguments' field in Secure Shell, with the syntax:
Code:
-- thecommand
Although I guess commands that need sudo would require a connection to [email protected], instead of chronos. (-t argument lets you use sudo, but then sending a line break/ENTER seems to be needed)
The window opened with the click does hang around - I haven't figured out if it's possible to avoid this - but it does at least seem to persistently remember the size and position to which it's set.
Click to expand...
Click to collapse
This really is impressive! Thanks for the extremely detailed explanation.
I was able to follow along completely and get the SSH argument "powerd_dbus_suspend" working.
However, I got to thinking. I was wondering if this could be extended to use an alias stored in ~/.bashrc?
After doing some research of my own and using various parameters and arguments, I was unsuccessful.
The goal is to have a linux app (through crouton) be run using xiwi with just a single bookmark by utilizing an alias.
Any thoughts?
UPDATE:
Of course just a few moments later I figured this out! Rather than dealing with an alias stored in ~/.bashrc and ensuring ssh had access, typing the entire alias command as an argument worked. Now I can run Steam directly from a shelf bookmark. All it took was replacing "powerd_dbus_suspend" with "-- sudo enter-chroot xiwi steam" in the argument.
Thanks again!
DandyRandyMarsh said:
This really is impressive! Thanks for the extremely detailed explanation.
I was able to follow along completely and get the SSH argument "powerd_dbus_suspend" working.
Click to expand...
Click to collapse
No problem! I think it's perhaps overly detailed if anything. Might be easier to follow if I cut it down a bit.
DandyRandyMarsh said:
Now I can run Steam directly from a shelf bookmark. All it took was replacing "powerd_dbus_suspend" with "-- sudo enter-chroot xiwi steam" in the argument.
Click to expand...
Click to collapse
Nice!
Adding crouton single app shortcuts is a cool idea which I hadn't considered. Does it work OK for you with sudo in the command, even straight after booting up? ...You didn't have to setup sudoing without a password via sudoers.d or anything?
Inspired by your post I added xiwi to my chroot to try it out. I seem to remember experiencing quite unbearable lag and slowness when running a full desktop via xiwi in the past, but with single apps there doesn't seem to be any noticeable performance hit (this is on an armv7 Asus Flip, with the chroot on a slooow USB drive).
In order to not have to enter my sudo password, in the argument I put:
Code:
-t -- echo mypassword | sudo -S sh /media/removable/3/bin/enter-chroot xiwi firefox
Maybe I'm missing something? Is there a better way, perhaps?
Anyway, since I have rootfs verification switched off, I also tried saving a similar command to a file in /usr/bin, and putting the filename in the argument instead. This works, too, and I suppose could potentially be useful e.g. in the case of needing to run a more convoluted sequence of commands with a shortcut.
Nolirum said:
Adding crouton single app shortcuts is a cool idea which I hadn't considered. Does it work OK for you with sudo in the command, even straight after booting up? ...You didn't have to setup sudoing without a password via sudoers.d or anything?
Click to expand...
Click to collapse
I'm not entirely familiar with exactly how my process worked, but I do not have any sudo password required within shell.
Here's the list of steps I followed allowing me to use sudo commands in the SSH Arguments box.
As a side note, this is the crouton installation I am running on an ASUS c302.
sudo sh ~/Downloads/crouton -r trusty -t unity,touch,xiwi,extension
Setup Bookmarks that Run Shell Commands
1. Installed Secure Shell extension
2. Open crosh with Ctrl+Atl+T
3. Enter Command: shell
4. Enter Command: sudo su -
5. Enter Command: sudo /usr/share/vboot/bin/make_dev_ssd.sh --force --remove_rootfs_verification
6. Enter Command: reboot
7. Let Chrome OS reboot
8. Open crosh with Ctrl+Atl+T
9. Enter Command: shell
10. Enter Command: sudo su -
11. Enter Command: mount –o remount rw /
12. Close current crosh window
13. Open a new crosh with Ctrl+Atl+T
14. Enter Command: shell
15. Enter Command: sudo ln -s /usr/share/chromeos-ssh-config/init/openssh-server.conf /etc/init/openssh-server.conf
16. Enter Command: sudo initctl reload-configuration
17. Enter Command: sudo initctl start openssh-server
18. Enter Command: cd ~/.ssh/
19. Enter Command: ssh-keygen
“Enter file in which…” *LEAVE BLANK*
“Enter passphrase” *LEAVE BLANK*
“Enter same passphrase” * LEAVE BLANK*20. Enter Command: cat /home/chronos/user/.ssh/id_rsa.pub >> /home/chronos/user/.ssh/authorized_keys
21. Enter Command: cp -a /home/chronos/user/.ssh/id_rsa* /home/chronos/user/Downloads
22. Close current crosh terminal and open Secure Shell extension
23. Select [New Connection]
24. Click Import… and select “id_rsa”
25. Click Import… again and select “id_rsa.pub”
26. Enter chronos as the username and localhost as the hostname
27. Enter a shorthand name replacing the text in the top cell “[email protected]”
28. Click Enter. If prompted, enter “yes” to continue connecting
29. Bookmark the page that is open which should end in, "#profile-id:_ _ _ _"
DONE. Now time to add some commands to automate.
Open Secure Shell and select the connection created. In the arguments box, start with two dashes -- and follow it your desired shell command.
Examples:
-- sudo startunity
-- sudo startgnome
-- sudo enter-chroot xiwi steam
-- sudo enter-chroot xiwi wine microWord
Next Steps... Getting Custom Shelf Icons
Now here I am running into some issues. Rather than have all these icons be the same, I was hoping to customize them.
Followed a strategy found on reddit, Change Shelf Icon for Website, but this only works if the site already had an "apple-touch-icon" set. Also, tried to inject the entire code myself which I couldn't get to work. Unfortunately, I think that since this bookmark is created from a Secure Shell, there are some issues.
I have already tried adding in code for this into the site, but it is having no effect. If someone could make this work then we're really looking good here.
DandyRandyMarsh said:
I'm not entirely familiar with exactly how my process worked, but I do not have any sudo password required within shell.
Click to expand...
Click to collapse
Oh, I see what you mean. You are saying that you can sudo in the shell generally, without being prompted for a password, right?
Was that the default setup on your CB (after switching to Dev mode)? Or did you have to configure it manually for passwordless sudoing...
DandyRandyMarsh said:
Here's the list of steps I followed allowing me to use sudo commands in the SSH Arguments box.
Click to expand...
Click to collapse
Nice work summarizing the steps. :highfive: It's probably easier to follow, listed out like that. One slight addendum, perhaps - at step 29, it might be good to clarify the "add to shelf" procedure. Especially because of the following...
DandyRandyMarsh said:
Next Steps... Getting Custom Shelf Icon
Now here I am running into some issues. Rather than have all these icons be the same, I was hoping to customize them.
Click to expand...
Click to collapse
Happily it turns out that, when you add shortcuts to the shelf on Chrome OS like this, a minimal app is created for each one, with its own manifest.json, and icon.pngs. Our shell shortcuts were getting created with blank pngs by default (the black box with P in the center).
So, all we need to do, is get some icons, find the right folder for our shelf shortcut apps, then copy our new icons into them!
For instance, here's how I made a nice shiny icon for my single app shelf shortcut to Firefox.
Prepared icons:
Created a temporary folder in ~/Downloads to store downloaded icons.
Prepared a set of icons in ~/Downloads/firefox. (I downloaded mine from findicons.com).
Six sizes are required - from 32px to 256. To avoid any manifest editing, saved them as *size*.png
e.g. 32.png; 48.png; 64.png; 96.png; 128.png; 256.png
Located folder to copy icons to:
It is easiest to do this directly after clicking "add to shelf"
EITHER:
To change dir into the most recently modified extension icon subfolder automatically, the following one-liner worked for me*.
Code:
shell
cd ~/Extensions/&&cd $(ls -v1td */ | head -1)/*/icons&&ls
A list of blank icons (*.png) should be visible. If so, the new icons can simply be copied over these, e.g..
Code:
sudo cp ~/Downloads/firefox/* .
*YMMV with this particular one-liner - sometimes there's an extra 'temp' folder in ~/Extensions, which stops it working as expected. If you get an error after running the command, simply use the slightly more manual method to locate the folder, as detailed below.
OR:
(slightly more manual method).
Code:
shell
ls -ltr ~/Extensions
Checked the date/times - the most recently added folder is at the bottom. Then,
Code:
cd themostrecentlyaddedfolder
(or, the folder modified at the date/time that the shortcut was "added to shelf"). Then,
Code:
cd */icons
ls
sudo cp ~/Downloads/firefox/* .
I then repeated the above with a new SSH argument and a set of Ubuntu icons, for a custom startxfce4 shortcut, too.
Then just did sudo restart ui, and enjoyed the shiny new shelf icons!
I am hopeful that these changes will get picked up by CrOS's sync, thus getting backed-up and restored automatically. At this point I am not sure if that will be the case, but I don't see why it wouldn't.
Another way?
Another way to approach this, since you're modifying system stuff anyway, might be to edit crosh at /usr/bin/crosh. It's a regular ol' dash/bash shell program, and you can create a shortcut to it on the shelf by opening crosh (ctrl-alt-T), then right click the top right of the browser and select More Tools --> Add to shelf...
Clicking the newly-created link (which looks like an "N") will launch /usr/bin/crosh in a tab. Changing the default behavior of /usr/bin/crosh could accomplish your goal to do whatever you want. With some experimenting, you might even be able to pass arguments to make it do different things depending on how it's opened (via ALT-CTRL-T vs from the shelf-- dunno if it can read the url used to call crosh), but at the very least you could do something like have it run whatever you want it to run if a second modifier key is held down (or if it isn't...), otherwise return to normal operation. A menu w/1 sec timeout could do this as well, ie--
Doing [THE THING YOU WANT] in 2 seconds (press SPACE for crosh)... /
Note there's no proof-of-concept here. Just throwing it out as an idea that I'm pretty sure would work... Someone might even create a neat extension that allows crosh to use scripts/plugins to execute different system operations beyond the stock ones that are built-in via single-clicks... If it worked, it might be a little simplier than via the SSH extension and you wouldn't have to run any extra daemons.
ft
This is probably harder, but a third way, which probably is the "right" way is to see how the crosh extension works and learn about opening the hterm.Terminal instance chrome.terminalprivate object directly, sending it output, and closing it in the same way crosh does it. There's a file in the crosh extension at js/crosh.js that shows the basics of how it's done:
var terminal = new hterm.Terminal(profileName);
And then you can do stuff with it. You could then create an extension that could handle multiple shelf-icons (say by appending ?COMMAND=ls to the URL to do different shell commands(. The security implications for this would probably be huge obviously.
Update: More on embedding hterm is here.
Nolirum said:
I managed to find a way to do something similar with the Secure Shell app. During the process of figuring it out, I also found that I was able to create a homescreen shortcut on my Android tablet which when tapped sends a shell command to the Chromebook.
I posted up some further details at http://nolirium.blogspot.com/shell-command-shelf-shortcut-chromeos.html
Click to expand...
Click to collapse
Nice post - Some good food for thought, changing up the contents of crosh etc directly is an interesting idea.
fattire said:
Another way to approach this, since you're modifying system stuff anyway, might be to edit crosh at /usr/bin/crosh. It's a regular ol' dash/bash shell program, and you can create a shortcut to it on the shelf by opening crosh (ctrl-alt-T), then right click the top right of the browser and select More Tools --> Add to shelf...
Click to expand...
Click to collapse
Interesting! ....Aaaaand, now I've broken crosh. lol. Lucky I had my SSH shortcut setup... (actually, we can still get into the VTs with CtrlAltF2 etc anyway).
Some good potential for experimentation with this, definitely.
fattire said:
This is probably harder, but a third way, which probably is the "right" way is to see how the crosh extension works and learn about opening the hterm.Terminal instance chrome.terminalprivate object directly, sending it output, and closing it in the same way crosh does it. There's a file in the crosh extension at js/crosh.js that shows the basics of how it's done:
Click to expand...
Click to collapse
Again, very interesting. Now you come to mention it, an approach such as this does seem like it might be do-able without too much messing around (maybe)...
Any possible method we can get e.g. an extension to 'talk' to the shell is worth looking into I think; as you say, if we can cut out the middleman (ssh) and maybe do it more elegantly, that might be pretty useful indeed.
Model Number Moto E (2nd Generation) with 4G LTE
Hardware SKU
XT1527
Android version 5.1
Andriod security patch level
2016-04-01
Build Number
LPIS23 29-18.9-2
by pass google and now in setting but build number no work by pressing can't open developer plz help someone
No One Knows !
I have solution
Mod Edit
My services are not required here
help plzzz
please help me, I have no way to pay you, I have no credi card, but I really need to have this phone ...
wrong place
This section is for Moto E first gen (condor) not for Moto e second gen (surnia).
iazmatkhan said:
Model Number Moto E (2nd Generation) with 4G LTE
Hardware SKU
XT1527
Android version 5.1
Andriod security patch level
2016-04-01
Build Number
LPIS23 29-18.9-2
by pass google and now in setting but build number no work by pressing can't open developer plz help someone
Click to expand...
Click to collapse
Take my skype i give you solution
Arsalan.shahab1
desirlowens said:
please help me, I have no way to pay you, I have no credi card, but I really need to have this phone ...
Click to expand...
Click to collapse
add me on skype:
arsalan.shahab1
This model of AT & T version 5.1 does not allow unlock bootloader
It not allowed to also upload version 6.0 for retail and still has not left the AT & T version.
Test dpc does not work for this security because itis not gives the option of encryption as Owner.
ByPass:
1. Playing in email and keep pressed the @ until a menu of options.
2. keyboard settings Google
3. orthographic / staff / Dictionary correction for all languages
4. On the next screen tap the magnifying glass and press the letter "c". Several options were deployed and there
Google Pinyin Input to choose. On the next screen we chose the same option.
5. Then choose "about" Open Source Licenses"
6. On the next screen may maintain finger pressing and the option will appear
"Share" to choose "messages" typing 112 and send. At that time the call keyboard appears
delete 112 and type * # * # 4636 # * # *
7. On the next screen you can choose info or battery usage statistics.
8. Then go to back with the arrow on the top left
9. ByPass done.
10. Here you can not enable the developer and we can not restore option. It's just bypass
---------- Post added at 01:34 AM ---------- Previous post was at 01:24 AM ----------
Process FRP
Download four app
Aptoide
Es fileExplorer
Kingo Root
Terminal Emulator
The accecibilidad this phone is very poor so that the process is as follows:
1. In the menu go to Use data / You Tube / Application Settings / About
2. chose Google Privacy Policy
3. Open Google Chrome and from there download each of the applications but do not open.
4. Then return to the phone menu with the option "back"
5. We will install fromStorage File Explorer and open it
6. From the File Explorer install the other three applications
7. Open Aptoide and install the Nova Launcher, open and see the phone menu
8. Execute Kingo Root and Root and wait to tell you Done
9. Let back and look for the Terminal Emulator, enter and type "SU" to give us the option
root access #
10. Write in the amulador the following command:
content insert --uri content://settings / secure --bind name: s: user_setup_complete --bind value: s: 1
11. After that go back out from terminal emulator. Enable developer and OEM Unlockif not does not imortant.
12. Go to account and fill your own google account. The phone let you fil up.
13 Very importante do no delete the phone
14. Restart the phone and when start again you can enter your own google account. Then delete the phone.
15. Done. Credits: arsalrock55
---------- Post added at 01:38 AM ---------- Previous post was at 01:34 AM ----------
Note:
You can add the app Multi Windows that offers a fast accessibility when the process fails and you have not to do all the ByPass again butI had problems with this app.
He also clarified that does not always go in the first time is because the root with Kingo Root maybe you have to do many times.
I hope you serve the process.
Tested 100%
Hallo....
arsalrock55 said:
Mod Edit
My services are not required here
Click to expand...
Click to collapse
Cual es la solucion?
Cannot Open File
At number 5 of the process, I get a (Cannot open file message) on any apk. do you know why?
ByPass:
1. Playing in email and keep pressed the @ until a menu of options.
2. keyboard settings Google
3. orthographic / staff / Dictionary correction for all languages
4. On the next screen tap the magnifying glass and press the letter "c". Several options were deployed and there
Google Pinyin Input to choose. On the next screen we chose the same option.
5. Then choose "about" Open Source Licenses"
6. On the next screen may maintain finger pressing and the option will appear
"Share" to choose "messages" typing 112 and send. At that time the call keyboard appears
delete 112 and type * # * # 4636 # * # *
7. On the next screen you can choose info or battery usage statistics.
8. Then go to back with the arrow on the top left
9. ByPass done.
10. Here you can not enable the developer and we can not restore option. It's just bypass
---------- Post added at 01:34 AM ---------- Previous post was at 01:24 AM ----------
Process FRP
Download four app
Aptoide
Es fileExplorer
Kingo Root
Terminal Emulator
The accecibilidad this phone is very poor so that the process is as follows:
1. In the menu go to Use data / You Tube / Application Settings / About
2. chose Google Privacy Policy
3. Open Google Chrome and from there download each of the applications but do not open.
4. Then return to the phone menu with the option "back"
5. We will install fromStorage File Explorer and open it
6. From the File Explorer install the other three applications
7. Open Aptoide and install the Nova Launcher, open and see the phone menu
8. Execute Kingo Root and Root and wait to tell you Done
9. Let back and look for the Terminal Emulator, enter and type "SU" to give us the option
root access #
10. Write in the amulador the following command:
content insert --uri content://settings / secure --bind name: s: user_setup_complete --bind value: s: 1
11. After that go back out from terminal emulator. Enable developer and OEM Unlockif not does not imortant.
12. Go to account and fill your own google account. The phone let you fil up.
13 Very importante do no delete the phone
14. Restart the phone and when start again you can enter your own google account. Then delete the phone.
15. Done. Credits: arsalrock55
---------- Post added at 01:38 AM ---------- Previous post was at 01:34 AM ----------
Note:
You can add the app Multi Windows that offers a fast accessibility when the process fails and you have not to do all the ByPass again butI had problems with this app.
He also clarified that does not always go in the first time is because the root with Kingo Root maybe you have to do many times.
I hope you serve the process.
Tested 100%[/QUOTE]
root moto e
Greetings you can become root to motorola e second generation of at & t.
I'd appreciate your help
iazmatkhan said:
Model Number Moto E (2nd Generation) with 4G LTE
Hardware SKU
XT1527
Android version 5.1
Andriod security patch level
2016-04-01
Build Number
LPIS23 29-18.9-2
by pass google and now in setting but build number no work by pressing can't open developer plz help someone
Click to expand...
Click to collapse
1. Charge phone up to 100%, keep charger connected.and make sure you insert a correct working sim card.
2. Start the phone, connect to WiFi, get to the last screen (input Google email) and press on text input and
open Google keyboard settings (long press @ on bottom left).
3. press Google keyboard settings, and select Languages, Deselect `use system language` and scroll down to activate
Vietnamese.
4. Go back to the screen whereby the phone is asking for your email address, pop up the keyboard and
press and hold the Globe symbol near the `@` a tab will pop out showing `Change keyboard` ,select `Google voice typing`
5. you will see a keyboard emoji at your down right, click on it and select choose keyboards,after that activate
`Google pinyin input and iwnn IME` go back and press and hold `@` key and select google keyboard settings and choose Text
correction
6. choose personal dictionary and tap on `for all languge` click on the magnifier glass,type `C` scroll down and select
Google pinyin input and select the same option,select about and click open source licenses,select a text and click on
the share option and choose messaging
Send the composed message to emergency number 112
7. Press the phone icon that just appeared on the top right part of the screen
8. Delete 112 from number selection and input *#*#4636#*#*
9. In the opened window chose 'Usage statistics' and press back arrow on the TOP of the screen, not bottom!
10. You are now in the phone's settings
11. Go to About in settings
12. enable debugging mode
12. Use miracle box to remove frp using adb Tab
It works 100% search in youtube: Bypass Google account moto E 2nd gen Android 5 1
Link
Video solution here https://www.youtube.com/watch?v=UUnOiJolKHI
NB: I edited some of the instruction above as some sections were wrong or hard to understand. You still have to muddle through to get a proper understanding. My model was AT&T version 5.1
This model of AT & T version 5.1 does not allow unlock bootloader
It not allowed to also upload version 6.0 for retail and still has not left the AT & T version.
Test dpc does not work for this security because it does not give the option of encryption as Owner.
ByPass:
1. Playing in email and keep pressed the @ until a menu of options.
2. keyboard settings Google
3. orthographic (text correction / staff(personal dictionary) / Dictionary correction for all languages
4. On the next screen tap the magnifying glass and press the letter "c". Several options were deployed and there
Google Pinyin Input to choose. On the next screen, we chose "google hindu input".
5. Then choose "about" Open Source Licenses"
6. On the next screen may maintain finger pressing and the option will appear
"Share" to choose "messages" typing 112 and send. At that time the telephone icon appears
select telephone icon
delete 112 and type * # * # 4636 # * # *
7. On the next screen you can choose info or battery usage statistics.
8. Then go to back with the arrow on the top left
9. ByPass done.
10. Here you can not enable the developer and we can not restore option. It's just bypass
---------- Post added at 01:34 AM ---------- Previous post was at 01:24 AM ----------
Process FRP
Download four app
Aptoide
Es fileExplorer
Kingo Root
(Instead of Kingo Root use Croowt for rooting.)
Terminal Emulator
The accessibility of this phone is very poor so that the process is as follows:
1. In the menu go to Use data (Data Usage)/ You Tube / Application Settings / About
2. chose Google Privacy Policy
3. Open Google Chrome and from there download each of the applications but do not open.
4. Then return to the phone menu with the option "back"
5. We will install fromStorage File Explorer and open it
6. From the File Explorer install the other three applications
7. Open Aptoide and install the Nova Launcher, open and see the phone menu
(sometimes the phone will send you back to the beginning,. If this happens use some of the previous instructions to help you get back to this point. Use your common sense or ingenuity to decide what instructions get you back)
8. Execute Kingo Root and Root and wait to tell you Done
(sometimes the phone will send you back to the beginning,. If this happens use some of the previous instructions to help you get back to this point. Use your common sense or ingenuity to decide what instructions get you back)
9. Let back and look for the Terminal Emulator, enter and type "SU" to give us the option root access #
10. Write in the amulador the following command:
content insert --uri content://settings/secure --bind name:s:user_setup_complete --bind value:s:1
11. After that go back out from terminal emulator. Enable developer and OEM Unlockif not does not imortant.
12. Go to account and fill your own google account. The phone let you fil up.
13 Very important: do no delete (reset) the phone as yet
14. Restart the phone and when start again you can enter your own google account. Then delete (reset) the phone.
15. Done. Credits: arsalrock55
HELP
arsalrock55 said:
mod edit
my services are not required here
Click to expand...
Click to collapse
i would like ur help
Additional help
madrick73 said:
at number 5 of the process, i get a (cannot open file message) on any apk. Do you know why?
bypass:
1. Playing in email and keep pressed the @ until a menu of options.
2. Keyboard settings google
3. Orthographic / staff / dictionary correction for all languages
4. On the next screen tap the magnifying glass and press the letter "c". Several options were deployed and there
google pinyin input to choose. On the next screen we chose the same option.
5. Then choose "about" open source licenses"
6. On the next screen may maintain finger pressing and the option will appear
"share" to choose "messages" typing 112 and send. At that time the call keyboard appears
delete 112 and type * # * # 4636 # * # *
7. On the next screen you can choose info or battery usage statistics.
8. Then go to back with the arrow on the top left
9. Bypass done.
10. Here you can not enable the developer and we can not restore option. It's just bypass
---------- post added at 01:34 am ---------- previous post was at 01:24 am ----------
process frp
download four app
aptoide
es fileexplorer
kingo root
terminal emulator
the accecibilidad this phone is very poor so that the process is as follows:
1. In the menu go to use data / you tube / application settings / about
2. Chose google privacy policy
3. Open google chrome and from there download each of the applications but do not open.
4. Then return to the phone menu with the option "back"
5. We will install fromstorage file explorer and open it
6. From the file explorer install the other three applications
7. Open aptoide and install the nova launcher, open and see the phone menu
8. Execute kingo root and root and wait to tell you done
9. Let back and look for the terminal emulator, enter and type "su" to give us the option
root access #
10. Write in the amulador the following command:
Content insert --uri content://settings / secure --bind name: S: User_setup_complete --bind value: S: 1
11. After that go back out from terminal emulator. Enable developer and oem unlockif not does not imortant.
12. Go to account and fill your own google account. The phone let you fil up.
13 very importante do no delete the phone
14. Restart the phone and when start again you can enter your own google account. Then delete the phone.
15. Done. Credits: Arsalrock55
---------- post added at 01:38 am ---------- previous post was at 01:34 am ----------
note:
You can add the app multi windows that offers a fast accessibility when the process fails and you have not to do all the bypass again buti had problems with this app.
He also clarified that does not always go in the first time is because the root with kingo root maybe you have to do many times.
I hope you serve the process.
Tested 100%
Click to expand...
Click to collapse
[/quote]
how to open aptoide
kingo root fail
how to open aptoide[/QUOTE]
it keeps telling me root failed
---------- Post added at 10:48 AM ---------- Previous post was at 10:08 AM ----------
bromass said:
NB: I edited some of the instruction above as some sections were wrong or hard to understand. You still have to muddle through to get a proper understanding. My model was AT&T version 5.1
This model of AT & T version 5.1 does not allow unlock bootloader
It not allowed to also upload version 6.0 for retail and still has not left the AT & T version.
Test dpc does not work for this security because it does not give the option of encryption as Owner.
ByPass:
1. Playing in email and keep pressed the @ until a menu of options.
2. keyboard settings Google
3. orthographic (text correction / staff(personal dictionary) / Dictionary correction for all languages
4. On the next screen tap the magnifying glass and press the letter "c". Several options were deployed and there
Google Pinyin Input to choose. On the next screen, we chose "google hindu input".
5. Then choose "about" Open Source Licenses"
6. On the next screen may maintain finger pressing and the option will appear
"Share" to choose "messages" typing 112 and send. At that time the telephone icon appears
select telephone icon
delete 112 and type * # * # 4636 # * # *
7. On the next screen you can choose info or battery usage statistics.
8. Then go to back with the arrow on the top left
9. ByPass done.
10. Here you can not enable the developer and we can not restore option. It's just bypass
---------- Post added at 01:34 AM ---------- Previous post was at 01:24 AM ----------
Process FRP
Download four app
Aptoide
Es fileExplorer
Kingo Root
(Instead of Kingo Root use Croowt for rooting.)
Terminal Emulator
The accessibility of this phone is very poor so that the process is as follows:
1. In the menu go to Use data (Data Usage)/ You Tube / Application Settings / About
2. chose Google Privacy Policy
3. Open Google Chrome and from there download each of the applications but do not open.
4. Then return to the phone menu with the option "back"
5. We will install fromStorage File Explorer and open it
6. From the File Explorer install the other three applications
7. Open Aptoide and install the Nova Launcher, open and see the phone menu
(sometimes the phone will send you back to the beginning,. If this happens use some of the previous instructions to help you get back to this point. Use your common sense or ingenuity to decide what instructions get you back)
8. Execute Kingo Root and Root and wait to tell you Done
(sometimes the phone will send you back to the beginning,. If this happens use some of the previous instructions to help you get back to this point. Use your common sense or ingenuity to decide what instructions get you back)
9. Let back and look for the Terminal Emulator, enter and type "SU" to give us the option root access #
10. Write in the amulador the following command:
content insert --uri content://settings/secure --bind name:s:user_setup_complete --bind value:s:1
11. After that go back out from terminal emulator. Enable developer and OEM Unlockif not does not imortant.
12. Go to account and fill your own google account. The phone let you fil up.
13 Very important: do no delete (reset) the phone as yet
14. Restart the phone and when start again you can enter your own google account. Then delete (reset) the phone.
15. Done. Credits: arsalrock55
Click to expand...
Click to collapse
i got the kingo root to work but i cant get te emulator to work
arsalrock55 said:
Take my skype i give you solution
Arsalan.shahab1
Click to expand...
Click to collapse
Same problem over here, the one issue is no one wants to even help Android 5.1 or older users seems everyone has gotten spolied